mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-12-03 23:28:00 -07:00
24 lines
563 B
TypeScript
24 lines
563 B
TypeScript
import Redis from "ioredis";
|
|
import config from "@/config/index.js";
|
|
|
|
export function createConnection() {
|
|
let source = config.redis;
|
|
if (config.cacheServer) {
|
|
source = config.cacheServer;
|
|
}
|
|
return new Redis({
|
|
port: source.port,
|
|
host: source.host,
|
|
family: source.family ?? 0,
|
|
password: source.pass,
|
|
username: source.user ?? "default",
|
|
keyPrefix: `${source.prefix}:`,
|
|
db: source.db || 0,
|
|
tls: source.tls,
|
|
});
|
|
}
|
|
|
|
export const subscriber = createConnection();
|
|
subscriber.subscribe(config.host);
|
|
|
|
export const redisClient = createConnection();
|