Hello,
If I set up limits on 2 or more individual routes will they each have their own queue or will they all share one queue?
So if I have:
app.use('/products', queue({ activeLimit: 1 }) );
app.use('/services', queue({ activeLimit: 100 }) );
If I make one request to /products that takes 5secs to complete - will users be blocked from /services during that time?
Hello,
If I set up limits on 2 or more individual routes will they each have their own queue or will they all share one queue?
So if I have:
app.use('/products', queue({ activeLimit: 1 }) );app.use('/services', queue({ activeLimit: 100 }) );If I make one request to
/productsthat takes 5secs to complete - will users be blocked from/servicesduring that time?