Questions tagged [bull.js]

Premium Queue package for handling jobs and messages in NodeJS.

31 questions
0
votes
0 answers

Why jobs are not waiting in waiting queue in bull?

I am using bull as a job queue. I have set this rate limit with the queue. const opts = { limiter: { max: 1, duration: 100, bounceBack: false } }; let queue = new Queue('FetchQueue', opts); My understanding of…
Ganesh Kumar
  • 3,220
  • 1
  • 19
  • 27
1 2
3