Improve benchmarks: add IO intensive task workload, add task size option, integrate...
[poolifier.git] / benchmarks / versus-external-pools / fixed-poolifier.js
CommitLineData
be0676b3 1// IMPORT LIBRARIES
144f78e0 2const { FixedThreadPool } = require('poolifier')
be0676b3 3// FINISH IMPORT LIBRARIES
79e7d368
JB
4const size = Number(process.env.POOL_SIZE)
5const iterations = Number(process.env.NUM_ITERATIONS)
be0676b3 6const data = {
9f7e7a99 7 test: 'MYBENCH',
7a6a0a96
JB
8 taskType: process.env.TASK_TYPE,
9 taskSize: process.env.TASK_SIZE
be0676b3
APA
10}
11
12const fixedPool = new FixedThreadPool(
79e7d368 13 size,
1927ee67 14 './workers/poolifier/function-to-bench-worker.js'
be0676b3
APA
15)
16
17async function run () {
18 const promises = []
19 for (let i = 0; i < iterations; i++) {
20 promises.push(fixedPool.execute(data))
21 }
22 await Promise.all(promises)
7a6a0a96 23 // eslint-disable-next-line no-process-exit
be0676b3
APA
24 process.exit()
25}
26
27run()