mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-05 05:57:38 +03:00
feat: implement caching of api responses
should help a bit in not getting rate-limited
This commit is contained in:
parent
a3b7f276cc
commit
175878dba9
10 changed files with 195 additions and 35 deletions
15
utils/getOrSetCache.js
Normal file
15
utils/getOrSetCache.js
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue