iceshrimp-legacy/src/queue/initialize.ts
2021-05-08 18:56:21 +09:00

19 lines
458 B
TypeScript

import * as Bull from 'bull';
import config from '@/config';
export function initialize<T>(name: string, limitPerSec = -1) {
return new Bull<T>(name, {
redis: {
port: config.redis.port,
host: config.redis.host,
password: config.redis.pass,
db: config.redis.db || 0,
},
prefix: config.redis.prefix ? `${config.redis.prefix}:queue` : 'queue',
limiter: limitPerSec > 0 ? {
max: limitPerSec * 5,
duration: 5000
} : undefined
});
}