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
For developers, composition of diverse service worker functionality can be done via importScripts(). The problem with this approach is that is needed to byte-alter the sw in order to get it updated. If not, imported scripts could change but the main file could remain the same. Traditional solutions forces the developer to manually add some kind of change in the sw file but the specification could take into account eTag header to determine if imported scripts have changed. If the eTag is not present, it can default to the current behaviour.
This way, even if the sw itself has not changed, a byte-level change in one of the eTag will trigger the update.
The text was updated successfully, but these errors were encountered:
For developers, composition of diverse service worker functionality can be done via
importScripts()
. The problem with this approach is that is needed to byte-alter the sw in order to get it updated. If not, imported scripts could change but the main file could remain the same. Traditional solutions forces the developer to manually add some kind of change in the sw file but the specification could take into account eTag header to determine if imported scripts have changed. If the eTag is not present, it can default to the current behaviour.This way, even if the sw itself has not changed, a byte-level change in one of the eTag will trigger the update.
The text was updated successfully, but these errors were encountered: