X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmarks%2Finternal%2Fbench.mjs;h=adff36153241f7843f702547237280a509bb7326;hb=273b76d87560482b4114668a705e42d54b3ce3b0;hp=368cf29c949f487b3223b5dd90c74beedcd359d1;hpb=49d60f11b30f7cdc9aca21379272a9ae89abe927;p=poolifier.git diff --git a/benchmarks/internal/bench.mjs b/benchmarks/internal/bench.mjs index 368cf29c..adff3615 100644 --- a/benchmarks/internal/bench.mjs +++ b/benchmarks/internal/bench.mjs @@ -15,7 +15,7 @@ const workerData = { // FixedThreadPool await runPoolifierPoolBenchmark( - 'Poolifier FixedThreadPool', + 'FixedThreadPool', WorkerTypes.thread, PoolTypes.fixed, poolSize, @@ -27,7 +27,7 @@ await runPoolifierPoolBenchmark( // DynamicThreadPool await runPoolifierPoolBenchmark( - 'Poolifier DynamicThreadPool', + 'DynamicThreadPool', WorkerTypes.thread, PoolTypes.dynamic, poolSize, @@ -39,7 +39,7 @@ await runPoolifierPoolBenchmark( // FixedClusterPool await runPoolifierPoolBenchmark( - 'Poolifier FixedClusterPool', + 'FixedClusterPool', WorkerTypes.cluster, PoolTypes.fixed, poolSize, @@ -51,7 +51,7 @@ await runPoolifierPoolBenchmark( // DynamicClusterPool await runPoolifierPoolBenchmark( - 'Poolifier DynamicClusterPool', + 'DynamicClusterPool', WorkerTypes.cluster, PoolTypes.dynamic, poolSize,