2 const { DynamicThreadPool
} = 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 dynamicPool
= new DynamicThreadPool(
14 './workers/poolifier/function-to-bench-worker.js'
17 async
function run () {
19 for (let i
= 0; i
< iterations
; i
++) {
20 promises
.push(dynamicPool
.execute(data
))
22 await Promise
.all(promises
)