From: Jérôme Benoit Date: Sat, 21 Oct 2023 17:32:33 +0000 (+0200) Subject: refactor: shorten benchmark names X-Git-Tag: v3.0.5~16 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=bbfa4c97031c6e2efe2e4e3cc27bcb5e94c7c42e;p=poolifier.git refactor: shorten benchmark names Signed-off-by: Jérôme Benoit --- 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,