2 const { FixedThreadPool
} = require('poolifier')
3 // FINISH IMPORT LIBRARIES
4 const size
= parseInt(process
.env
.POOL_SIZE
)
5 const iterations
= parseInt(process
.env
.NUM_ITERATIONS
)
8 taskType
: process
.env
.TASK_TYPE
,
9 taskSize
: parseInt(process
.env
.TASK_SIZE
)
12 const fixedPool
= new FixedThreadPool(
14 './workers/poolifier/function-to-bench-worker.js'
17 async
function run () {
19 for (let i
= 0; i
< iterations
; i
++) {
20 promises
.push(fixedPool
.execute(data
))
22 await Promise
.all(promises
)
23 // eslint-disable-next-line n/no-process-exit