Created
October 2, 2017 07:38
-
-
Save osvaldasvalutis/25b1b7474a845bd7422bcec334477a2d to your computer and use it in GitHub Desktop.
Service Worker gotchas – https://medium.com/kollegorna/service-worker-gotchas-af20a9dab986
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const trimCache = (cacheName, maxItems) => { | |
caches.open(cacheName).then(cache => { | |
cache.keys().then(keys => { | |
if(keys.length > maxItems) | |
cache.delete(keys[0]).then(trimCache(cacheName, maxItems)); | |
}); | |
}); | |
}; | |
self.addEventListener('message', event => { | |
if(event.data.command == 'trimCache') { | |
trimCache(otherCacheName, 50); | |
trimCache(imagesCacheName, 25); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment