Skip to content

Commit 2eaec24

Browse files
committed
Øker cache ttl til 72 timer
1 parent ea94955 commit 2eaec24

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

server/src/cache/page-cache-handler.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import FileSystemCache from 'next/dist/server/lib/incremental-cache/file-system-
22
import { LRUCache } from 'lru-cache';
33
import { CacheHandlerValue } from 'next/dist/server/lib/incremental-cache';
44
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';
66
import { pathToCacheKey } from 'srcCommon/cache-key';
77

88
const TTL_RESOLUTION_MS = 60 * 1000;
@@ -11,7 +11,7 @@ export const redisCache = new RedisCache();
1111

1212
const localCache = new LRUCache<string, CacheHandlerValue>({
1313
max: 2000,
14-
ttl: CACHE_TTL_24_HOURS_IN_MS,
14+
ttl: CACHE_TTL_72_HOURS_IN_MS,
1515
ttlResolution: TTL_RESOLUTION_MS,
1616
});
1717

@@ -31,9 +31,9 @@ export default class PageCacheHandler {
3131

3232
const ttlRemaining = fromRedisCache.lastModified
3333
? fromRedisCache.lastModified +
34-
CACHE_TTL_24_HOURS_IN_MS -
34+
CACHE_TTL_72_HOURS_IN_MS -
3535
Date.now()
36-
: CACHE_TTL_24_HOURS_IN_MS;
36+
: CACHE_TTL_72_HOURS_IN_MS;
3737

3838
if (ttlRemaining > TTL_RESOLUTION_MS) {
3939
localCache.set(key, fromRedisCache, {

srcCommon/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const CACHE_TTL_24_HOURS_IN_MS = 3600 * 24 * 1000;
1+
export const CACHE_TTL_72_HOURS_IN_MS = 3600 * 72 * 1000;

srcCommon/redis.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createClient, RedisClientOptions } from 'redis';
22
import { logger } from 'srcCommon/logger';
33
import { PHASE_PRODUCTION_BUILD } from 'next/constants';
4-
import { CACHE_TTL_24_HOURS_IN_MS } from 'srcCommon/constants';
4+
import { CACHE_TTL_72_HOURS_IN_MS } from 'srcCommon/constants';
55
import { CacheHandlerValue } from 'next/dist/server/lib/incremental-cache';
66
import { pathToCacheKey } from 'srcCommon/cache-key';
77

@@ -43,7 +43,7 @@ interface IRedisCache {
4343

4444
class RedisCacheImpl implements IRedisCache {
4545
private readonly client: ReturnType<typeof createClient>;
46-
private readonly ttl: number = CACHE_TTL_24_HOURS_IN_MS;
46+
private readonly ttl: number = CACHE_TTL_72_HOURS_IN_MS;
4747
private readonly responseCacheKeyPrefix = getResponseCacheKeyPrefix();
4848
private renderCacheKeyPrefix = '';
4949

0 commit comments

Comments
 (0)