All checks were successful
Build & Push Docker Image / build (push) Successful in 6m14s
26 lines
644 B
JavaScript
26 lines
644 B
JavaScript
import Redis from 'ioredis';
|
|
|
|
const REDIS_URL = process.env.REDIS_URL || 'redis://localhost:6379';
|
|
|
|
const redis = new Redis(REDIS_URL, {
|
|
enableOfflineQueue: false,
|
|
maxRetriesPerRequest: 1,
|
|
retryStrategy: (times) => {
|
|
if (times > 3) return null; // stop retrying after 3 attempts
|
|
return Math.min(times * 200, 1000);
|
|
},
|
|
});
|
|
|
|
redis.on('error', (err) => {
|
|
// Suppress ECONNREFUSED noise after initial failure — only warn
|
|
if (err.code !== 'ECONNREFUSED') {
|
|
console.warn('⚠️ DragonflyDB error:', err.message);
|
|
}
|
|
});
|
|
|
|
redis.on('connect', () => {
|
|
console.log('🐉 DragonflyDB connected');
|
|
});
|
|
|
|
export default redis;
|