build(deps-dev): bump @typescript-eslint/parser from 6.15.0 to 6.16.0
[poolifier.git] / benchmarks / internal / bench.mjs
index 368cf29c949f487b3223b5dd90c74beedcd359d1..5ea11e18414b6f9c474a32ec92c0eba3d0538cb1 100644 (file)
@@ -1,3 +1,4 @@
+import { exit } from 'node:process'
 import {
   PoolTypes,
   WorkerTypes,
@@ -15,7 +16,7 @@ const workerData = {
 
 // FixedThreadPool
 await runPoolifierPoolBenchmark(
-  'Poolifier FixedThreadPool',
+  'FixedThreadPool',
   WorkerTypes.thread,
   PoolTypes.fixed,
   poolSize,
@@ -27,7 +28,7 @@ await runPoolifierPoolBenchmark(
 
 // DynamicThreadPool
 await runPoolifierPoolBenchmark(
-  'Poolifier DynamicThreadPool',
+  'DynamicThreadPool',
   WorkerTypes.thread,
   PoolTypes.dynamic,
   poolSize,
@@ -39,7 +40,7 @@ await runPoolifierPoolBenchmark(
 
 // FixedClusterPool
 await runPoolifierPoolBenchmark(
-  'Poolifier FixedClusterPool',
+  'FixedClusterPool',
   WorkerTypes.cluster,
   PoolTypes.fixed,
   poolSize,
@@ -51,7 +52,7 @@ await runPoolifierPoolBenchmark(
 
 // DynamicClusterPool
 await runPoolifierPoolBenchmark(
-  'Poolifier DynamicClusterPool',
+  'DynamicClusterPool',
   WorkerTypes.cluster,
   PoolTypes.dynamic,
   poolSize,
@@ -60,3 +61,5 @@ await runPoolifierPoolBenchmark(
     workerData
   }
 )
+
+exit()