Skip to content
Advertisement

How to update the cached files in my service worker every 30 minutes?

I have this service worker:

JavaScript

In “stock_items_balance.php” i fetch data from my DB. So in every 30 minutes i would like to update my cached pages and reload the window.

So first i have a script that checks for internet connection.
If true, i want to clean/update the cache and reload the page.

How can i do that?

JavaScript

Advertisement

Answer

(I think you have a larger question as to whether the approach you describe is actually going to give a good, predictable, offline-capable experience for your users, but I’m just going to focus on the actual technical question you asked.)

Messaging the service worker

First off, you should keep in mind that it’s possible to have multiple tabs open for the same URL, and if you, you’re going to end up with your update code potentially running multiple times. The code in this answer handles the “reload” step for you from inside of the service worker, after the asynchronous cache update has completed, by getting a list of all the active clients of the service worker and telling each to navigate to the current URL (which is effectively a reload).

JavaScript
JavaScript

What won’t work

The Cache Storage API is available from both inside a service worker and inside of your page’s window scope. Normally what I’d recommend that folks do is to open up the same cache from the window context, and call cache.add() to update the cached entry with the latest from the network. However, calling cache.add() from the window context will cause the network request to be intercepted by your fetch handler, and at that point, your response won’t actually come from the network. By calling cache.add() from inside your service worker, you can guarantee that the resulting network request won’t trigger your fetch handler.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement