18 lines
676 B
TypeScript
18 lines
676 B
TypeScript
import { createClient, RedisClientType } from "redis";
|
|
|
|
export const pubClient: RedisClientType = createClient({
|
|
url: `redis://${process.env.REDIS_HOST || "localhost"}:${process.env.REDIS_PORT || 6379}`,
|
|
});
|
|
export const subClient: RedisClientType = pubClient.duplicate();
|
|
|
|
if (!process.env.REDIS_HOST || !process.env.REDIS_PORT) {
|
|
console.warn("REDIS_HOST or REDIS_PORT not set, skipping Redis connection");
|
|
} else {
|
|
Promise.all([pubClient.connect(), subClient.connect()]).then(() => {
|
|
console.log("Redis connected");
|
|
});
|
|
}
|
|
|
|
pubClient.on("error", (err) => console.log("Redis Client Error", err));
|
|
subClient.on("error", (err) => console.log("Redis Client Error", err));
|