worker pool
JavaScript
Promise
TypeScript
WorkerPool
async
async/await
asynchronous processing
concurrent processing
parallel processing
worker pool
There are times when you have many tasks that you want to process in parallel, but executing all of them in parallel would be too heavy, so you want to specify the number of tasks to be executed concurrently. I am ashamed to admit that I d…