X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fversus-external-pools%2Ffixed-tinypool.mjs;h=307ac3b53de2ef01355dd2c3ab80b800da95c40d;hb=d85b2ffd876588fd71a22a4103dbe138e2dc2287;hp=223c0f005837673d4f69a4d468c1938a67d929a6;hpb=935f9dbfab43a61ffa756313e6088adc2261a79d;p=poolifier.git diff --git a/benchmarks/versus-external-pools/fixed-tinypool.mjs b/benchmarks/versus-external-pools/fixed-tinypool.mjs index 223c0f00..307ac3b5 100644 --- a/benchmarks/versus-external-pools/fixed-tinypool.mjs +++ b/benchmarks/versus-external-pools/fixed-tinypool.mjs @@ -1,6 +1,6 @@ -// IMPORT LIBRARIES import Tinypool from 'tinypool' -// FINISH IMPORT LIBRARIES +import { executeAsyncFn } from './utils.mjs' + const size = parseInt(process.env.POOL_SIZE) const iterations = parseInt(process.env.NUM_ITERATIONS) const data = { @@ -10,22 +10,20 @@ const data = { } const tinypool = new Tinypool({ - filename: './workers/tinypool/function-to-bench-worker.js', + filename: './workers/tinypool/function-to-bench-worker.mjs', minThreads: size, + maxThreads: size, idleTimeout: 60000 // this is the same as poolifier default }) -/** - * - */ async function run () { - const promises = [] + const promises = new Set() for (let i = 0; i < iterations; i++) { - promises.push(tinypool.run(data)) + promises.add(tinypool.run(data)) } await Promise.all(promises) // eslint-disable-next-line n/no-process-exit process.exit() } -run() +await executeAsyncFn(run)