docs: add tinypool to external pools benchmark
[poolifier.git] / benchmarks / versus-external-pools / fixed-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 idleTimeout: 60000 // this is the same as poolifier default
16 })
17
18 /**
19 *
20 */
21 async function run () {
22 const promises = []
23 for (let i = 0; i < iterations; i++) {
24 promises.push(tinypool.run(data))
25 }
26 await Promise.all(promises)
27 // eslint-disable-next-line n/no-process-exit
28 process.exit()
29 }
30
31 run()