docs: update benchmark vs. external pools
[poolifier.git] / benchmarks / versus-external-pools / fixed-poolifier.mjs
CommitLineData
be0676b3 1// IMPORT LIBRARIES
8fca9288 2import { FixedThreadPool } from 'poolifier'
be0676b3 3// FINISH IMPORT LIBRARIES
6bd72cd0
JB
4const size = parseInt(process.env.POOL_SIZE)
5const iterations = parseInt(process.env.NUM_ITERATIONS)
be0676b3 6const data = {
9f7e7a99 7 test: 'MYBENCH',
7a6a0a96 8 taskType: process.env.TASK_TYPE,
6bd72cd0 9 taskSize: parseInt(process.env.TASK_SIZE)
be0676b3
APA
10}
11
12const fixedPool = new FixedThreadPool(
79e7d368 13 size,
8fca9288 14 './workers/poolifier/function-to-bench-worker.mjs'
be0676b3
APA
15)
16
17async function run () {
1655b92e 18 const promises = new Set()
be0676b3 19 for (let i = 0; i < iterations; i++) {
1655b92e 20 promises.add(fixedPool.execute(data))
be0676b3
APA
21 }
22 await Promise.all(promises)
2f8c5b5c 23 // eslint-disable-next-line n/no-process-exit
be0676b3
APA
24 process.exit()
25}
26
8fca9288 27await run()