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