Improve benchmarks: add IO intensive task workload, add task size option, integrate...
[poolifier.git] / benchmarks / versus-external-pools / fixed-poolifier.js
1 // IMPORT LIBRARIES
2 const { FixedThreadPool } = require('poolifier')
3 // FINISH IMPORT LIBRARIES
4 const size = Number(process.env.POOL_SIZE)
5 const iterations = Number(process.env.NUM_ITERATIONS)
6 const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: process.env.TASK_SIZE
10 }
11
12 const fixedPool = new FixedThreadPool(
13 size,
14 './workers/poolifier/function-to-bench-worker.js'
15 )
16
17 async 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)
23 // eslint-disable-next-line no-process-exit
24 process.exit()
25 }
26
27 run()