blob: 55c053584585b98d2ab3171078af6112c129c84d (
plain)
1
2
3
4
5
6
7
8
9
10
|
import Redis from "ioredis";
import { connection } from "./info";
/** Redis client instance for caching and session management */
export const redis = new Redis({
host: connection.host,
port: connection.port,
password: connection.password,
db: connection.db,
});
|