quetre/utils/redis.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

12 lines
281 B
JavaScript

/* eslint-disable no-unused-vars */
import Redis from 'ioredis';
const redisUrl = process.env.REDIS_URL;
const stub = {
get: async key => {},
set: async (key, value, secondsToken, seconds) => {},
};
const redis = redisUrl ? new Redis(redisUrl) : stub;
export default redis;