Local group concurrency
import { QueuePro } from '@taskforcesh/bullmq-pro';
const queue = new QueuePro('myQueue', { connection });
const groupId = 'my group';
await queue.setGroupConcurrency(groupId, 4);const concurrency = await queue.getGroupConcurrency(groupId);Read more:
Last updated
Was this helpful?