Removed max tasks (#225)
[poolifier.git] / benchmarks / versus-external-pools / fixed-poolifier.js
1 // IMPORT LIBRARIES
2 const { FixedThreadPool, DynamicThreadPool } = require('poolifier')
3 // FINISH IMPORT LIBRARIES
4 const size = process.env.POOL_SIZE
5 const iterations = process.env.NUM_ITERATIONS
6 const data = {
7 test: 'MYBENCH',
8 taskType: process.env['TASK_TYPE']
9 }
10
11 const fixedPool = new FixedThreadPool(
12 size,
13 './workers/poolifier/function-to-bench-worker.js'
14 )
15
16 async function run () {
17 const promises = []
18 for (let i = 0; i < iterations; i++) {
19 promises.push(fixedPool.execute(data))
20 }
21 await Promise.all(promises)
22 process.exit()
23 }
24
25 run()