X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Finternal%2Fchoose-worker.js;h=560a395b69207ec6fede5d6abf39e3a2ad4ba2f3;hb=e843b9042b77e0e4e17c193820a3e05ffc92cffe;hp=fe98eff1e0123ad143d2e394ffa59c53ee8afe4a;hpb=be0676b3936d75f22ce55b0f71a1fb03d008a01c;p=poolifier.git diff --git a/benchmarks/internal/choose-worker.js b/benchmarks/internal/choose-worker.js index fe98eff1..560a395b 100644 --- a/benchmarks/internal/choose-worker.js +++ b/benchmarks/internal/choose-worker.js @@ -1,17 +1,17 @@ const Benchmark = require('benchmark') +const { LIST_FORMATTER } = require('./benchmark-utils') const suite = new Benchmark.Suite() -const LIST_FORMATTER = new Intl.ListFormat('en-US', { - style: 'long', - type: 'conjunction' -}) +function generateWorkersArray (numberOfWorkers) { + return [...Array(numberOfWorkers).keys()] +} -const workers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] +const workers = generateWorkersArray(60) -let nextWorkerIndex = 0 +let nextWorkerIndex -function chooseWorkerTernary () { +function chooseWorkerTernaryOffByOne () { nextWorkerIndex = workers.length - 1 === nextWorkerIndex ? 0 : nextWorkerIndex + 1 return workers[nextWorkerIndex] @@ -40,15 +40,15 @@ function chooseWorkerIncrementModulo () { } suite - .add('Ternary', function () { + .add('Ternary off by one', function () { nextWorkerIndex = 0 - chooseWorkerTernary() + chooseWorkerTernaryOffByOne() }) .add('Ternary with negation', function () { nextWorkerIndex = 0 chooseWorkerTernaryWithNegation() }) - .add('Ternary with PreChoosing', function () { + .add('Ternary with pre-choosing', function () { nextWorkerIndex = 0 chooseWorkerTernaryWithPreChoosing() })