server/packages/plugin-kit/redis.ts

11 lines
306 B
TypeScript
Raw Normal View History

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,
});