I want to implement the below thing using node js.
- Multiple thread handling parallel incoming REST calls
- An internal blocking queue(as in java) to block the requests beyond the size of the Queue until queue size goes below its maximum.
- this is a similar implementation as of blocking queue as of Java
Could anyone please suggest how this can be implemented in node js.