Thread pools allow you to control the number of active threads at any given time.
Ruby thread pool.
In this case it might be more beneficial to start a predefined set of.
To start a new thread just associate a block with a call to thread new.
You could build your own pool but i wouldn t recommend it.
The value returned by the block will be the value of the promise.
A new thread will be created to execute the code in the block and the original thread will return from thread new immediately and resume execution with the next.
Celluloid is now unmaintaned but the general idea of worker pools still applies.
Fortunately there is a better way.
Concurrent ruby provides several global thread pools.
Thread pool a ruby antihero understanding a fundamental ruby abstraction for concurrency one of the fundamental concepts in key ruby libraries that embrace concurrency is the thread pool.
Require rubygems require thread pool pool threadpool new threads 10 pool execute puts i m writing from a thread pool join it s often useful to make sure that the properties of ruby s blocks don t bite you.
Higher level abstractions use global thread pools by default for running asynchronous operations without creating new threads more often than necessary.
Each thread should be wrapped before it runs application code so if your application manually delegates work to other threads such as via thread new or concurrent ruby features that use thread pools you should immediately wrap the block.
You can find examples of thread pool implementations in gems like puma concurrent ruby celluloid pmap parallel and ruby thread.
A simple executor style threadpool for ruby with tests yay usage.
Ruby thread pool a thread pool is useful when you wish to do some work in a thread but do not know how much work you will be doing in advance.
Thread pools are particularly useful when there are a large number of short tasks to be performed rather than a small number of longer tasks.
These executors are lazy loaded so they do not create overhead when not needed.
A future is somewhat a promise except you pass it a block to execute in another thread.
A thread pool is a group of pre instantiated reusable threads that are available to perform work as needed.
By default thread future executes the block in a newly created thread.
Spawning one thread for each task is potentially expensive as threads are not free.
One solution is to use a thread pool.