https://github.com/pioardi/poolifier contains two thread pool implementations.The first implementation is a static thread pool , with a defined number of threads that are started at creation time and will be reused.The second implementation is a dynamic thread pool with a number of threads started at creation time ( these threads will be always active and reused) and other threads created when the load will increase ( with an upper limit, these threads will be reused when active ), the new created threads will be stopped after a configurable period of inactivity.
Submitted January 22, 2020 at 11:10PM by pioardi
No comments:
Post a Comment