Update cache management (#1382)
Change strategy of cache management. Today we don't have version of map building so we cannot use cache correctly. The idea is to have a less cache and keep HTPP cache management with GET method. Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>
This commit is contained in:
parent
0bfac1a164
commit
1ffd198b00
7
front/dist/service-worker-prod.js
vendored
7
front/dist/service-worker-prod.js
vendored
@ -1,4 +1,4 @@
|
||||
let CACHE_NAME = 'workavdenture-cache-v1.4.14';
|
||||
let CACHE_NAME = 'workavdenture-cache';
|
||||
let urlsToCache = [
|
||||
'/'
|
||||
];
|
||||
@ -14,7 +14,8 @@ self.addEventListener('install', function(event) {
|
||||
});
|
||||
|
||||
self.addEventListener('fetch', function(event) {
|
||||
event.respondWith(
|
||||
//TODO mamnage fetch data and cache management
|
||||
/*event.respondWith(
|
||||
caches.match(event.request)
|
||||
.then(function(response) {
|
||||
// Cache hit - return response
|
||||
@ -44,7 +45,7 @@ self.addEventListener('fetch', function(event) {
|
||||
}
|
||||
);
|
||||
})
|
||||
);
|
||||
);*/
|
||||
});
|
||||
|
||||
self.addEventListener('wait', function(event) {
|
||||
|
Loading…
Reference in New Issue
Block a user