Update README.MD
authorAlessandro Pio Ardizio <alessandroardizio94@gmail.com>
Tue, 21 Jan 2020 22:38:40 +0000 (23:38 +0100)
committerGitHub <noreply@github.com>
Tue, 21 Jan 2020 22:38:40 +0000 (23:38 +0100)
README.MD

index 7bc3b55b4542591d1c42e9c147517c41a5593712..48d6a30f315a9e400b874775c833c1a5cb6c3388 100644 (file)
--- a/README.MD
+++ b/README.MD
@@ -20,8 +20,8 @@
 
 <h2> Overview </h2>
 Node pool contains two <a href="https://nodejs.org/api/worker_threads.html#worker_threads_worker_threads">worker-threads </a> pool implementations , you don' t have to deal with worker-threads complexity. <br>
-The first implementation is a static thread pool , with a defined number of threads that are started at creation time .<br>
-The 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 ), the new created threads will be stopped after a threshold. <br>
+The first implementation is a static thread pool , with a defined number of threads that are started at creation time and will be reused.<br>
+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 ), the new created threads will be stopped after a configurable period of inactivity. <br>
 You have to implement your worker extending the ThreadWorker class<br>
 <h2 id="installation">Installation</h2>