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
)
8 taskType
: process
.env
['TASK_TYPE']
11 const fixedPool
= new FixedThreadPool(
13 './workers/poolifier/function-to-bench-worker.js'
16 async
function run () {
18 for (let i
= 0; i
< iterations
; i
++) {
19 promises
.push(fixedPool
.execute(data
))
21 await Promise
.all(promises
)