Benchmarks: properly parse env variables
[poolifier.git] / benchmarks / versus-external-pools / fixed-threadwork.js
index dfba6c00f645ccd46b27d8b26513643212a82794..d21fae6a8e2179704af88fb420c40f2c338deb1a 100644 (file)
@@ -1,24 +1,20 @@
 // IMPORT LIBRARIES
-const { ThreadPool } = require('threadwork')
+const threadPool = require('./pool-threadwork')
 // FINISH IMPORT LIBRARIES
-// IMPORT FUNCTION TO BENCH
-const functionToBench = require('./functions/function-to-bench')
-// FINISH IMPORT FUNCTION TO BENCH
-const size = process.env.POOL_SIZE
-const iterations = process.env.NUM_ITERATIONS
+const iterations = parseInt(process.env.NUM_ITERATIONS)
 const data = {
   test: 'MYBENCH',
-  taskType: process.env['TASK_TYPE']
+  taskType: process.env.TASK_TYPE,
+  taskSize: parseInt(process.env.TASK_SIZE)
 }
 
-const threadPool = new ThreadPool({ task: functionToBench, size: size })
-
 async function run () {
   const promises = []
   for (let i = 0; i < iterations; i++) {
     promises.push(threadPool.run(data))
   }
   await Promise.all(promises)
+  // eslint-disable-next-line n/no-process-exit
   process.exit()
 }