You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 30, 2024. It is now read-only.
The service worker speeds up the application a great deal, but there are two problems:
We serve stale application assets while we update in the background, sometimes resulting in strange UI behavior until the next page load
Data is cached indefinitely, so if the format changes and someone has a stale copy of the data, they never get the updated version
Solution
We should detect when the application assets have changed. If we load new CSS or JS in the background, we should notify users that they should refresh to get the latest version.
We also need to provide controls that tell users what data is available in the cache and allow them to either refresh or delete that data.
No Gos
Describe any features or behaviors that have been considered and rejected as out of scope for this project.
Rabbit Holes
Describe any solutions to problems that pose a risk to completing this project on time.