mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 13:07:37 +03:00
feat(cache): increase ttl for routes that are cached but being accessed again
This commit is contained in:
parent
35a0d87c13
commit
10eea08305
2 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue