4f249159d3
* wip * wip * wip * wip * wip * Update chart.ts * wip * Improve server performance * wip * wip
7 lines
378 B
TypeScript
7 lines
378 B
TypeScript
import config from '../config';
|
|
import { initialize as initializeQueue } from './initialize';
|
|
|
|
export const deliverQueue = initializeQueue('deliver', config.deliverJobPerSec || 128);
|
|
export const inboxQueue = initializeQueue('inbox', config.inboxJobPerSec || 16);
|
|
export const dbQueue = initializeQueue('db');
|
|
export const objectStorageQueue = initializeQueue('objectStorage');
|