feat: implement caching of api responses

should help a bit in not getting rate-limited
This commit is contained in:
zyachel 2023-02-11 22:21:28 +05:30
parent a3b7f276cc
commit 175878dba9
10 changed files with 195 additions and 35 deletions

15
utils/getOrSetCache.js Normal file
View file

@ -0,0 +1,15 @@
import redis from './redis.js';
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);
const dataToCache = await callback(...callbackArgs);
await redis.set(key, JSON.stringify(dataToCache), 'EX', ttl);
return dataToCache;
};
export default getOrSetCache;