X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Fversus-external-pools%2Ffixed-tinypool.mjs;h=7063b5b957891f79496a83f65a7b83510cc314d2;hb=08416934cb21e9dca8281c9e7121d3863cc742bf;hp=0875e3f4d513b1a737a908da80bf44d5d46548e9;hpb=c9577f2d11abedb767d52bc4fbbb7531089800a6;p=poolifier.git diff --git a/benchmarks/versus-external-pools/fixed-tinypool.mjs b/benchmarks/versus-external-pools/fixed-tinypool.mjs index 0875e3f4..7063b5b9 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 '../benchmarks-utils.mjs' + const size = parseInt(process.env.POOL_SIZE) const iterations = parseInt(process.env.NUM_ITERATIONS) const data = { @@ -10,20 +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)