docs: add tinypool to external pools benchmark
[poolifier.git] / benchmarks / versus-external-pools / dynamic-tinypool.mjs
1 // IMPORT LIBRARIES
2 import Tinypool from 'tinypool'
3 // FINISH IMPORT LIBRARIES
4 const size = parseInt(process.env.POOL_SIZE)
5 const iterations = parseInt(process.env.NUM_ITERATIONS)
6 const data = {
7 test: 'MYBENCH',
8 taskType: process.env.TASK_TYPE,
9 taskSize: parseInt(process.env.TASK_SIZE)
10 }
11
12 const tinypool = new Tinypool({
13 filename: './workers/tinypool/function-to-bench-worker.js',
14 minThreads: size,
15 maxThreads: size * 3,
16 idleTimeout: 60000 // this is the same as poolifier default
17 })
18
19 /**
20 *
21 */
22 async function run () {
23 const promises = []
24 for (let i = 0; i < iterations; i++) {
25 promises.push(tinypool.run(data))
26 }
27 await Promise.all(promises)
28 // eslint-disable-next-line n/no-process-exit
29 process.exit()
30 }
31
32 run()