From: Jérôme Benoit Date: Mon, 12 Jun 2023 15:04:35 +0000 (+0200) Subject: docs: refine worker choice strategies README X-Git-Tag: v2.6.3~30 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=12d8ed1bb68ed0e8c52797c25c10b41aed6ffa1a;p=poolifier.git docs: refine worker choice strategies README Signed-off-by: Jérôme Benoit --- diff --git a/src/pools/selection-strategies/README.md b/src/pools/selection-strategies/README.md index d7619e0b..78770b1b 100644 --- a/src/pools/selection-strategies/README.md +++ b/src/pools/selection-strategies/README.md @@ -16,7 +16,7 @@ The worker weights are maximum tasks execution time, once the worker has reached ### Interleaved weighted round robin The worker weights are maximum tasks execution time. The rounds are the deduplicated worker weights. -During a round, if worker weight is inferior to the current round, the next task is assigned to the next worker. Once the all workers have been assigned a task, the next round starts. +During a round, if worker weight is inferior to the current round, the next task is assigned to the next worker. Once all workers have been assigned a task, the next round starts. The worker default weights are the same for all workers and is computed given the CPU cores speed and theirs numbers. So the default rounds consists of a unique worker weight. ## Statistics