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
feat(service-worker): finish implementation of refreshAhead feature (#53356)
Copy and document the refreshAhead option that allows to refresh cache entries before they expire.
This allows to mark cached entries as stale while still retruning them until maxAge in case of service outage.
Closes#46729
PR Close#53356
Copy file name to clipboardexpand all lines: adev/src/content/ecosystem/service-workers/config.md
+17
Original file line number
Diff line number
Diff line change
@@ -197,6 +197,7 @@ export interface DataGroup {
197
197
maxSize: number;
198
198
maxAge: string;
199
199
timeout?: string;
200
+
refreshAhead?: string;
200
201
strategy?: 'freshness' | 'performance';
201
202
};
202
203
cacheQueryOptions?: {
@@ -270,6 +271,22 @@ The network timeout is how long the Angular service worker waits for the network
270
271
271
272
For example, the string `5s30u` translates to five seconds and 30 milliseconds of network timeout.
272
273
274
+
275
+
##### `refreshAhead`
276
+
277
+
This duration string specifies the time ahead of the expiration of a cached resource when the Angular service worker should proactively attempt to refresh the resource from the network.
278
+
The `refreshAhead` duration is an optional configuration that determines how much time before the expiration of a cached response the service worker should initiate a request to refresh the resource from the network.
279
+
280
+
| Suffixes | Details |
281
+
|:--- |:--- |
282
+
|`d`| Days |
283
+
|`h`| Hours |
284
+
|`m`| Minutes |
285
+
|`s`| Seconds |
286
+
|`u`| Milliseconds |
287
+
288
+
For example, the string `1h30m` translates to one hour and 30 minutes ahead of the expiration time.
289
+
273
290
##### `strategy`
274
291
275
292
The Angular service worker can use either of two caching strategies for data resources.
Copy file name to clipboardexpand all lines: packages/service-worker/config/schema.json
+4
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,10 @@
119
119
"type": "string",
120
120
"description": "This duration string specifies the network timeout. The network timeout is how long the Angular service worker will wait for the network to respond before using a cached response, if configured to do so. 'timeout' is a duration string, using the following unit suffixes: d= days, h= hours, m= minutes, s= seconds, u= milliseconds. For example, the string '5s30u' will translate to five seconds and 30 milliseconds of network timeout."
121
121
},
122
+
"refreshAhead": {
123
+
"type": "string",
124
+
"description": "This duration string specifies the time ahead of the expiration of a cached resource when the Angular service worker should proactively attempt to refresh the resource from the network. The `refreshAhead` duration is an optional configuration that determines how much time before the expiration of a cached response the service worker should initiate a request to refresh the resource from the network."
0 commit comments