From: aardizio Date: Tue, 21 Jan 2020 23:38:14 +0000 (+0100) Subject: Some benchmarking improvements X-Git-Tag: v0.0.1~10 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=8d9ce260ea63aed64614494d396488b01af8f3e7;hp=3fc1a3e9163bdcdff495671c7588c6a94e0c2981;p=poolifier.git Some benchmarking improvements --- diff --git a/benchmarks/myBench.js b/benchmarks/myBench.js index 6ea0abfe..45f11b29 100644 --- a/benchmarks/myBench.js +++ b/benchmarks/myBench.js @@ -7,7 +7,7 @@ const size = 10 // pools const externalPool = new Pool({ max: size }) const fixedPool = new FixedThreadPool(size, './yourWorker.js', { maxTasks: 10000 }) -const dynamicPool = new DynamicThreadPool(size, size * 2, './yourWorker.js', { maxTasks: 10000 }) +const dynamicPool = new DynamicThreadPool(size / 2, 50, './yourWorker.js', { maxTasks: 10000 }) // data const workerData = { proof: 'ok' } @@ -16,28 +16,30 @@ const workerData = { proof: 'ok' } async function fixedTest () { let executions = 0 const time = Date.now() - for (let i = 0; i < tasks; i++) { - await fixedPool.execute(workerData) - executions++ + for (let i = 0; i <= tasks; i++) { + fixedPool.execute(workerData).then(res => { + executions++ + if (executions === tasks) console.log(`Fixed pool take ${Date.now() - time} to work on ${executions} tasks`) + }) } - console.log(`Fixed pool take ${Date.now() - time} to work on ${executions} tasks`) } async function dynamicTest () { let executions = 0 const time = Date.now() - for (let i = 0; i < tasks; i++) { - await dynamicPool.execute(workerData) - executions++ + for (let i = 0; i <= tasks; i++) { + dynamicPool.execute(workerData).then(res => { + executions++ + if (executions === tasks) console.log(`Dynamic pool take ${Date.now() - time} to work on ${executions} tasks`) + }) } - console.log(`Dynamic pool take ${Date.now() - time} to work on ${executions} tasks`) } async function externalPoolTest () { let executions = 0 const time = Date.now() - for (let i = 0; i < tasks; i++) { - await new Promise((resolve, reject) => { + for (let i = 0; i <= tasks; i++) { + new Promise((resolve, reject) => { externalPool.acquire('./externalWorker.js', { workerData: workerData }, (err, worker) => { if (err) { return reject(err) @@ -48,15 +50,16 @@ async function externalPoolTest () { resolve(res) }) }) + }).then(res => { + if (tasks === executions) console.log(`External pool take ${Date.now() - time} to work on ${executions} tasks`) }) } - console.log(`External pool take ${Date.now() - time} to work on ${executions} tasks`) } async function test () { - await fixedTest() - await dynamicTest() - await externalPoolTest() + fixedTest() + dynamicTest() + externalPoolTest() } test()