X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fversus-external-pools%2Fstatic-node-worker-threads-pool.mjs;h=d37677cdb1294190d9663365e0a39d89d986b973;hb=4bb5e44d1c954dcfed7125abcb62ecc4774dab0a;hp=3632216b5daeed0771077f873bbf9bca5e69f177;hpb=1655b92eb1223501125f6cac2f83fc86fbc958ab;p=poolifier.git diff --git a/benchmarks/versus-external-pools/static-node-worker-threads-pool.mjs b/benchmarks/versus-external-pools/static-node-worker-threads-pool.mjs index 3632216b..d37677cd 100644 --- a/benchmarks/versus-external-pools/static-node-worker-threads-pool.mjs +++ b/benchmarks/versus-external-pools/static-node-worker-threads-pool.mjs @@ -1,9 +1,7 @@ -// IMPORT LIBRARIES import { StaticPool } from 'node-worker-threads-pool' -// FINISH IMPORT LIBRARIES -// IMPORT FUNCTION TO BENCH +import { executeAsyncFn } from '../benchmarks-utils.mjs' import functionToBench from './functions/function-to-bench.js' -// FINISH IMPORT FUNCTION TO BENCH + const size = parseInt(process.env.POOL_SIZE) const iterations = parseInt(process.env.NUM_ITERATIONS) const data = { @@ -12,7 +10,7 @@ const data = { taskSize: parseInt(process.env.TASK_SIZE) } -const pool = new StaticPool({ +const staticPool = new StaticPool({ size, task: functionToBench }) @@ -20,11 +18,11 @@ const pool = new StaticPool({ async function run () { const promises = new Set() for (let i = 0; i < iterations; i++) { - promises.add(pool.exec(data)) + promises.add(staticPool.exec(data)) } await Promise.all(promises) // eslint-disable-next-line n/no-process-exit process.exit() } -await run() +await executeAsyncFn(run)