I've built a Progressive Web App that uses caching, but it's unclear to me whether users can (accidentally or on purpose) clear the service worker cache, which may clear my tracking data.
相关问题
- PWAs on iOS 12 no longer shares Service Worker cac
- Are promises lazily evaluated?
- start_url does not respond with a 200 when offline
- Adding a new header to a Request, while preserving
- unable to post message to service worker because c
相关文章
- Checking for service worker updates in a single pa
- Progressive web app(PWA) vs Electron vs Browser ex
- Is there a way to add badge notifications using pr
- Uncaught (in promise) DOMException: Quota exceeded
- Manifest start_url is not cached by a Service Work
- Why does fetch request have to be cloned in servic
- Media Notifications using the Media Session Web AP
- Get page URL parameters from a service worker
Furthermore,
Ctrl-F5
forces a cache refresh, and isintended to abandon all cached content including service worker cache
and just retrieve all content from the servers again.When a user clears their browsing data / cookies, this clears all site storage which includes the SW cache, cookies, local storage, indexeddb, and any other local caching system.