X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=README.md;h=532d9e8fda44f1b66b6ed0ea8c4992e2245c4a62;hb=eafd70acfa479361cab41e2bcb2a285ee2674a5e;hp=52650f3e72b10aa40fc4bd427206e634ca836ad1;hpb=5a5fc090d6f7eb9248df1ba5c0ff4d001461b6d4;p=poolifier.git diff --git a/README.md b/README.md index 52650f3e..532d9e8f 100644 --- a/README.md +++ b/README.md @@ -165,6 +165,7 @@ Node versions >= 16.14.x are supported. - `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.INTERLEAVED_WEIGHTED_ROUND_ROBIN`: Submit tasks to worker using an interleaved weighted round robin scheduling algorithm based on tasks execution time (experimental) - `WorkerChoiceStrategies.FAIR_SHARE`: Submit tasks to worker using a fair share tasks scheduling algorithm based on tasks execution time `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` and `WorkerChoiceStrategies.FAIR_SHARE` strategies are targeted to heavy and long tasks.