docs: update benchmarks vs. external pools
[poolifier.git] / benchmarks / versus-external-pools / static-node-worker-threads-pool.mjs
index b943be5d4a60e1531371ce5151af359cde815674..3632216b5daeed0771077f873bbf9bca5e69f177 100644 (file)
@@ -2,7 +2,7 @@
 import { StaticPool } from 'node-worker-threads-pool'
 // FINISH IMPORT LIBRARIES
 // IMPORT FUNCTION TO BENCH
-import functionToBench from './functions/function-to-bench.mjs'
+import functionToBench from './functions/function-to-bench.js'
 // FINISH IMPORT FUNCTION TO BENCH
 const size = parseInt(process.env.POOL_SIZE)
 const iterations = parseInt(process.env.NUM_ITERATIONS)
@@ -18,9 +18,9 @@ const pool = new StaticPool({
 })
 
 async function run () {
-  const promises = []
+  const promises = new Set()
   for (let i = 0; i < iterations; i++) {
-    promises.push(pool.exec(data))
+    promises.add(pool.exec(data))
   }
   await Promise.all(promises)
   // eslint-disable-next-line n/no-process-exit