server/utils/redis.ts

11 lines
296 B
TypeScript
Raw Normal View History

import IORedis from "ioredis";
import { config } from "~/config.ts";
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,
});