Skip to content

Commit 1479af9

Browse files
yelhoutidevversion
authored andcommittedOct 10, 2024·
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
1 parent 95bee15 commit 1479af9

File tree

6 files changed

+34
-0
lines changed

6 files changed

+34
-0
lines changed
 

‎adev/src/content/ecosystem/service-workers/config.md

+17
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ export interface DataGroup {
197197
maxSize: number;
198198
maxAge: string;
199199
timeout?: string;
200+
refreshAhead?: string;
200201
strategy?: 'freshness' | 'performance';
201202
};
202203
cacheQueryOptions?: {
@@ -270,6 +271,22 @@ The network timeout is how long the Angular service worker waits for the network
270271

271272
For example, the string `5s30u` translates to five seconds and 30 milliseconds of network timeout.
272273

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+
273290
##### `strategy`
274291

275292
The Angular service worker can use either of two caching strategies for data resources.

‎goldens/public-api/service-worker/config/index.api.md

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export interface DataGroup {
4444
maxSize: number;
4545
maxAge: Duration;
4646
timeout?: Duration;
47+
refreshAhead?: Duration;
4748
strategy?: 'freshness' | 'performance';
4849
cacheOpaqueResponses?: boolean;
4950
};

‎packages/service-worker/config/schema.json

+4
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@
119119
"type": "string",
120120
"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."
121121
},
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."
125+
},
122126
"strategy": {
123127
"enum": [
124128
"freshness",

‎packages/service-worker/config/src/generator.ts

+2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ export class Generator {
103103
maxSize: group.cacheConfig.maxSize,
104104
maxAge: parseDurationToMs(group.cacheConfig.maxAge),
105105
timeoutMs: group.cacheConfig.timeout && parseDurationToMs(group.cacheConfig.timeout),
106+
refreshAheadMs:
107+
group.cacheConfig.refreshAhead && parseDurationToMs(group.cacheConfig.refreshAhead),
106108
cacheOpaqueResponses: group.cacheConfig.cacheOpaqueResponses,
107109
cacheQueryOptions: buildCacheQueryOptions(group.cacheQueryOptions),
108110
version: group.version !== undefined ? group.version : 1,

‎packages/service-worker/config/src/in.ts

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ export interface DataGroup {
5656
maxSize: number;
5757
maxAge: Duration;
5858
timeout?: Duration;
59+
refreshAhead?: Duration;
5960
strategy?: 'freshness' | 'performance';
6061
cacheOpaqueResponses?: boolean;
6162
};

‎packages/service-worker/config/test/generator_spec.ts

+9
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ describe('Generator', () => {
100100
maxAge: 259200000,
101101
timeoutMs: 60000,
102102
version: 1,
103+
refreshAheadMs: undefined,
103104
cacheOpaqueResponses: undefined,
104105
cacheQueryOptions: {ignoreVary: true},
105106
},
@@ -351,6 +352,7 @@ describe('Generator', () => {
351352
maxSize: 100,
352353
maxAge: 259200000,
353354
timeoutMs: undefined,
355+
refreshAheadMs: undefined,
354356
version: 1,
355357
cacheOpaqueResponses: undefined,
356358
cacheQueryOptions: {ignoreVary: true},
@@ -362,6 +364,7 @@ describe('Generator', () => {
362364
maxSize: 100,
363365
maxAge: 259200000,
364366
timeoutMs: undefined,
367+
refreshAheadMs: undefined,
365368
version: 1,
366369
cacheOpaqueResponses: false,
367370
cacheQueryOptions: {ignoreVary: true},
@@ -373,6 +376,7 @@ describe('Generator', () => {
373376
maxSize: 100,
374377
maxAge: 259200000,
375378
timeoutMs: undefined,
379+
refreshAheadMs: undefined,
376380
version: 1,
377381
cacheOpaqueResponses: true,
378382
cacheQueryOptions: {ignoreVary: true},
@@ -384,6 +388,7 @@ describe('Generator', () => {
384388
maxSize: 100,
385389
maxAge: 259200000,
386390
timeoutMs: undefined,
391+
refreshAheadMs: undefined,
387392
version: 1,
388393
cacheOpaqueResponses: undefined,
389394
cacheQueryOptions: {ignoreVary: true},
@@ -395,6 +400,7 @@ describe('Generator', () => {
395400
maxSize: 100,
396401
maxAge: 259200000,
397402
timeoutMs: undefined,
403+
refreshAheadMs: undefined,
398404
version: 1,
399405
cacheOpaqueResponses: false,
400406
cacheQueryOptions: {ignoreVary: true},
@@ -406,6 +412,7 @@ describe('Generator', () => {
406412
maxSize: 100,
407413
maxAge: 259200000,
408414
timeoutMs: undefined,
415+
refreshAheadMs: undefined,
409416
version: 1,
410417
cacheOpaqueResponses: true,
411418
cacheQueryOptions: {ignoreVary: true},
@@ -448,6 +455,7 @@ describe('Generator', () => {
448455
maxSize: 100,
449456
strategy: 'performance',
450457
timeout: '1m',
458+
refreshAhead: '1h',
451459
},
452460
cacheQueryOptions: {ignoreSearch: false},
453461
},
@@ -477,6 +485,7 @@ describe('Generator', () => {
477485
maxSize: 100,
478486
maxAge: 259200000,
479487
timeoutMs: 60000,
488+
refreshAheadMs: 3600000,
480489
version: 1,
481490
cacheOpaqueResponses: undefined,
482491
cacheQueryOptions: {ignoreSearch: false, ignoreVary: true},

0 commit comments

Comments
 (0)
Please sign in to comment.