X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=README.md;h=9c67d340c2dca6f057a3ce7c31b00d1f44630609;hb=6db75ad932064c1415ff6f03645929530209a5fe;hp=f0f8fc0466d4fe6ee04a672cd16c1f0f16bcc231;hpb=4a297cd559d11d60dbc5310c11914a49496c421c;p=poolifier.git diff --git a/README.md b/README.md index f0f8fc04..9c67d340 100644 --- a/README.md +++ b/README.md @@ -163,6 +163,8 @@ You can use node versions >= 12.x for thread pool, and node versions >= 16.x for - `WorkerChoiceStrategies.ROUND_ROBIN`: Submit tasks to worker in this pool in a round robbin fashion - `WorkerChoiceStrategies.LESS_RECENTLY_USED`: Submit tasks to the less recently used worker in the pool + - `WorkerChoiceStrategies.WEIGHTED_ROUND_ROBIN` Submit tasks to worker using a weighted round robin scheduling algorithm based on tasks execution time for now + - `WorkerChoiceStrategies.FAIR_SHARE`: Submit tasks to worker using a fair share tasks scheduling algorithm Default: `WorkerChoiceStrategies.ROUND_ROBIN`