From: Alessandro Pio Ardizio Date: Tue, 21 Jan 2020 22:38:40 +0000 (+0100) Subject: Update README.MD X-Git-Tag: v0.0.1~9^2~2 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=755f08b3242edeca87f8f3d500e970de097b7851;p=poolifier.git Update README.MD --- diff --git a/README.MD b/README.MD index 7bc3b55b..48d6a30f 100644 --- a/README.MD +++ b/README.MD @@ -20,8 +20,8 @@

Overview

Node pool contains two worker-threads pool implementations , you don' t have to deal with worker-threads complexity.
-The first implementation is a static thread pool , with a defined number of threads that are started at creation time .
-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.
+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 ), the new created threads will be stopped after a configurable period of inactivity.
You have to implement your worker extending the ThreadWorker class

Installation