feat(cache): increase ttl for routes that are cached but being accessed again

This commit is contained in:
zyachel 2023-04-23 19:13:21 +05:30
parent 35a0d87c13
commit 10eea08305
2 changed files with 5 additions and 1 deletions

View file

@ -4,7 +4,10 @@ const ttl = process.env.REDIS_TTL || 3600;
const getOrSetCache = async (key, callback, ...callbackArgs) => {
const data = await redis.get(key);
if (data) return JSON.parse(data);
if (data) {
await redis.expire(key, ttl);
return JSON.parse(data);
}
const dataToCache = await callback(...callbackArgs);
await redis.set(key, JSON.stringify(dataToCache), 'EX', ttl);

View file

@ -6,6 +6,7 @@ const redisUrl = process.env.REDIS_URL;
const stub = {
get: async key => {},
set: async (key, value, secondsToken, seconds) => {},
expire: async (key, seconds) => {},
};
const redis = redisUrl ? new Redis(redisUrl) : stub;