From ae427b85b7557a3434e739bf3bba6dd3567568b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 15 Jul 2023 15:58:55 +0200 Subject: [PATCH] docs: fix README.md MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b4c696f8..4b153dcd 100644 --- a/README.md +++ b/README.md @@ -80,10 +80,10 @@ Please consult our [general guidelines](#general-guidance). ## Overview -Poolifier contains two [worker_threads](https://nodejs.org/api/worker_threads.html#class-worker)/[cluster](https://nodejs.org/api/cluster.html#cluster_class_worker) worker pool implementations, you don't have to deal with worker*threads/cluster complexity. +Poolifier contains two [worker_threads](https://nodejs.org/api/worker_threads.html#class-worker)/[cluster](https://nodejs.org/api/cluster.html#cluster_class_worker) worker pool implementations, you don't have to deal with worker\*threads/cluster complexity. The first implementation is a static worker pool, with a defined number of workers that are started at creation time and will be reused. The second implementation is a dynamic worker pool with a number of worker started at creation time (these workers will be always active and reused) and other workers created when the load will increase (with an upper limit, these workers will be reused when active), the new created workers will be stopped after a configurable period of inactivity. -You have to implement your worker by extending the \_ThreadWorker* or _ClusterWorker_ class. +You have to implement your worker by extending the _ThreadWorker_ or _ClusterWorker_ class. ## Installation -- 2.34.1