398c38edb826e6661976183b1b80f5a3b75fbe88
[poolifier.git] / benchmarks / versus-external-pools / static-suchmokuo-node-worker-threads-pool.js
1 // IMPORT LIBRARIES
2 const { StaticPool } = require('node-worker-threads-pool')
3 // FINISH IMPORT LIBRARIES
4 // IMPORT FUNCTION TO BENCH
5 const functionToBench = require('./functions/function-to-bench')
6 // FINISH IMPORT FUNCTION TO BENCH
7 const size = Number(process.env.POOL_SIZE)
8 const iterations = Number(process.env.NUM_ITERATIONS)
9 const data = {
10 test: 'MYBENCH',
11 taskType: process.env.TASK_TYPE,
12 taskSize: process.env.TASK_SIZE
13 }
14
15 const pool = new StaticPool({
16 size,
17 task: functionToBench
18 })
19
20 async function run () {
21 const promises = []
22 for (let i = 0; i < iterations; i++) {
23 promises.push(pool.exec(data))
24 }
25 await Promise.all(promises)
26 // eslint-disable-next-line no-process-exit
27 process.exit()
28 }
29
30 run()