X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fversus-external-pools%2Ffixed-poolifier.js;h=2a5e599ab11aefc0948bb8ec208f3650ede4e02f;hb=b0f28badcfcb5f7125a7094e8984ac6fa516e550;hp=c994620899f15283d478b3d9494186607b109a66;hpb=9f7e7a99ea7dfa6f2fb3c2e0e025b85cfdd4e22e;p=poolifier.git diff --git a/benchmarks/versus-external-pools/fixed-poolifier.js b/benchmarks/versus-external-pools/fixed-poolifier.js index c9946208..2a5e599a 100644 --- a/benchmarks/versus-external-pools/fixed-poolifier.js +++ b/benchmarks/versus-external-pools/fixed-poolifier.js @@ -1,19 +1,17 @@ // IMPORT LIBRARIES -const { FixedThreadPool, DynamicThreadPool } = require('poolifier') +const { FixedThreadPool } = require('poolifier') // FINISH IMPORT LIBRARIES -const size = process.env.POOL_SIZE -const iterations = process.env.NUM_ITERATIONS +const size = parseInt(process.env.POOL_SIZE) +const iterations = parseInt(process.env.NUM_ITERATIONS) const data = { test: 'MYBENCH', - taskType: process.env['TASK_TYPE'] + taskType: process.env.TASK_TYPE, + taskSize: parseInt(process.env.TASK_SIZE) } const fixedPool = new FixedThreadPool( size, - './workers/poolifier/function-to-bench-worker.js', - { - maxTasks: 100000 - } + './workers/poolifier/function-to-bench-worker.js' ) async function run () { @@ -22,6 +20,7 @@ async function run () { promises.push(fixedPool.execute(data)) } await Promise.all(promises) + // eslint-disable-next-line n/no-process-exit process.exit() }