7cfd651d3ee3f4a9ea7208348409c803408d756f
[poolifier.git] / benchmarks / versus-external-pools / fixed-poolifier.mjs
1 import { FixedThreadPool } from 'poolifier'
2 import { executeAsyncFn } from '../benchmarks-utils.mjs'
3
4 const size = parseInt(process.env.POOL_SIZE)
5 const iterations = parseInt(process.env.NUM_ITERATIONS)
6 const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: parseInt(process.env.TASK_SIZE)
10 }
11
12 const fixedThreadPool = new FixedThreadPool(
13 size,
14 './workers/poolifier/function-to-bench-worker.mjs',
15 {
16 enableTasksQueue: false
17 }
18 )
19
20 async function run () {
21 const promises = new Set()
22 for (let i = 0; i < iterations; i++) {
23 promises.add(fixedThreadPool.execute(data))
24 }
25 await Promise.all(promises)
26 // eslint-disable-next-line n/no-process-exit
27 process.exit()
28 }
29
30 await executeAsyncFn(run)