move beatsaver map caching to redis
All checks were successful
deploy / deploy (push) Successful in 1m35s

This commit is contained in:
Lee
2023-11-08 23:17:32 +00:00
parent af707a8c79
commit e6b169f3fc
9 changed files with 154 additions and 37 deletions

31
src/db/redis.ts Normal file
View File

@ -0,0 +1,31 @@
import { createClient } from "redis";
let redisClient = connectRedis();
async function connectRedis() {
console.log("Connecting to redis");
const client = createClient({
url: process.env.REDIS_URL,
});
await client.connect();
client.on("connect", () => {
console.log("Connected to redis");
});
client.on("error", (error) => {
console.error("There was an error connecting to redis: " + error);
setTimeout(() => {
redisClient = connectRedis();
}, 5_000); // 5 seconds
});
return client;
}
// todo: add disconnect handler
export const Redis = {
client: redisClient,
connectRedis,
};