import { createClient, type RedisClientType } from 'redis';
const redis_url = process.env.REDIS_URL || 'redis://127.0.0.1:6379';
const client: RedisClientType = createClient({
url: redis_url,
socket: {
tls: redis_url.match(/rediss:/) != null,
rejectUnauthorized: false,
},
});