Update index.js
[poolifier.git] / README.MD
CommitLineData
13031992 1# Node Pool :arrow_double_up: :on:
b4b2dc8b 2[![JavaScript Style Guide](https://cdn.rawgit.com/standard/standard/master/badge.svg)](https://github.com/standard/standard)
103df814 3[![Dependabot](https://badgen.net/dependabot/dependabot/dependabot-core/?icon=dependabot)](https://badgen.net/dependabot/dependabot/dependabot-core/?icon=dependabot)
e7752b74 4[![Actions Status](https://github.com/pioardi/node-pool/workflows/NodeCI/badge.svg)](https://github.com/pioardi/node-pool/actions)
b4b2dc8b 5
13031992 6Node pool contains two <a href="https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads">worker-threads </a> pool implementations. <br>
7The first implementation is a static thread pool , with a defined number of threads that are started at creation time .<br>
b4b2dc8b 8The second implementation is a dynamic thread pool with a number of threads started at creation time and other threads created when the load will increase ( with an upper limit ). <br>
13031992 9