quetre/utils/getOrSetCache.js
zyachel 175878dba9 feat: implement caching of api responses
should help a bit in not getting rate-limited
2023-02-11 22:21:28 +05:30

15 lines
394 B
JavaScript

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;