redis.ts 323 B

1234567891011121314
  1. import Redis from "ioredis";
  2. export const redis = new Redis({
  3. host: process.env.REDIS_HOST || "localhost",
  4. port: Number(process.env.REDIS_PORT) || 6379,
  5. });
  6. redis.on("connect", () => {
  7. console.log("Redis Connected");
  8. });
  9. redis.on("error", (error) => {
  10. console.error("Redis connection error:", error);
  11. });