General clean up
[poolifier.git] / proof.js
1 const FixedThreadPool = require('./lib/fixed')
2 const DynamicThreadPool = require('./lib/dynamic')
3 let resolved = 0
4 // const pool = new FixedThreadPool(15, './yourWorker.js')
5 const pool = new DynamicThreadPool(300, 1020, './yourWorker.js')
6
7 const start = Date.now()
8 const iterations = 300
9 for (let i = 0; i <= iterations; i++) {
10 pool.execute({}).then(res => {
11 resolved++
12 if (resolved === iterations) {
13 console.log('Time take is ' + (Date.now() - start))
14 }
15 })
16 }