X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=52650f3e72b10aa40fc4bd427206e634ca836ad1;hb=97f67da2ce86494fee0ddc545084b73fea6182ca;hp=3eeebed184aa73b2417537a8b3e3e48d5af10f8a;hpb=9e45c2c437217612e71b46b207a994f9106dff23;p=poolifier.git diff --git a/README.md b/README.md index 3eeebed1..52650f3e 100644 --- a/README.md +++ b/README.md @@ -162,8 +162,8 @@ Node versions >= 16.14.x are supported. - `workerChoiceStrategy` (optional) - The worker choice strategy to use in this pool: - `WorkerChoiceStrategies.ROUND_ROBIN`: Submit tasks to worker in a round robbin fashion - - `WorkerChoiceStrategies.LESS_USED`: Submit tasks to the less used worker - - `WorkerChoiceStrategies.LESS_BUSY`: Submit tasks to the less busy worker + - `WorkerChoiceStrategies.LEAST_USED`: Submit tasks to the least used worker + - `WorkerChoiceStrategies.LEAST_BUSY`: Submit tasks to the least busy worker - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN`: Submit tasks to worker using a weighted round robin scheduling algorithm based on tasks execution time - `WorkerChoiceStrategies.FAIR_SHARE`: Submit tasks to worker using a fair share tasks scheduling algorithm based on tasks execution time