@@ -2,7 +2,7 @@ import FileSystemCache from 'next/dist/server/lib/incremental-cache/file-system-
2
2
import { LRUCache } from 'lru-cache' ;
3
3
import { CacheHandlerValue } from 'next/dist/server/lib/incremental-cache' ;
4
4
import { RedisCache } from 'srcCommon/redis' ;
5
- import { CACHE_TTL_24_HOURS_IN_MS } from 'srcCommon/constants' ;
5
+ import { CACHE_TTL_72_HOURS_IN_MS } from 'srcCommon/constants' ;
6
6
import { pathToCacheKey } from 'srcCommon/cache-key' ;
7
7
8
8
const TTL_RESOLUTION_MS = 60 * 1000 ;
@@ -11,7 +11,7 @@ export const redisCache = new RedisCache();
11
11
12
12
const localCache = new LRUCache < string , CacheHandlerValue > ( {
13
13
max : 2000 ,
14
- ttl : CACHE_TTL_24_HOURS_IN_MS ,
14
+ ttl : CACHE_TTL_72_HOURS_IN_MS ,
15
15
ttlResolution : TTL_RESOLUTION_MS ,
16
16
} ) ;
17
17
@@ -31,9 +31,9 @@ export default class PageCacheHandler {
31
31
32
32
const ttlRemaining = fromRedisCache . lastModified
33
33
? fromRedisCache . lastModified +
34
- CACHE_TTL_24_HOURS_IN_MS -
34
+ CACHE_TTL_72_HOURS_IN_MS -
35
35
Date . now ( )
36
- : CACHE_TTL_24_HOURS_IN_MS ;
36
+ : CACHE_TTL_72_HOURS_IN_MS ;
37
37
38
38
if ( ttlRemaining > TTL_RESOLUTION_MS ) {
39
39
localCache . set ( key , fromRedisCache , {
0 commit comments