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