Merge branch 'master' of github.com:jerome-benoit/poolifier
[poolifier.git] / benchmarks / versus-external-pools / fixed-poolifier.mjs
1 // IMPORT LIBRARIES
2 import { FixedThreadPool } from 'poolifier'
3 // FINISH IMPORT LIBRARIES
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 fixedPool = new FixedThreadPool(
13 size,
14 './workers/poolifier/function-to-bench-worker.mjs'
15 )
16
17 async function run () {
18 const promises = new Set()
19 for (let i = 0; i < iterations; i++) {
20 promises.add(fixedPool.execute(data))
21 }
22 await Promise.all(promises)
23 // eslint-disable-next-line n/no-process-exit
24 process.exit()
25 }
26
27 await run()