server/packages/plugin-kit/redis.ts
2025-06-15 23:43:27 +02:00

11 lines
306 B
TypeScript

import { config } from "@versia-server/config";
import IORedis from "ioredis";
export const connection = new IORedis({
host: config.redis.queue.host,
port: config.redis.queue.port,
password: config.redis.queue.password,
db: config.redis.queue.database,
maxRetriesPerRequest: null,
});