From bc19a196c0bf9322ddf9e4ccc0401c32f3d3d913 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Sat, 21 Dec 2024 10:06:25 +0100 Subject: [PATCH] Update index.cfm --- custom/benchmark/index.cfm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom/benchmark/index.cfm b/custom/benchmark/index.cfm index fdfe50d..1c50bcb 100644 --- a/custom/benchmark/index.cfm +++ b/custom/benchmark/index.cfm @@ -1,5 +1,5 @@ - never_runs = server.system.environment.BENCHMARK_CYCLES ?: 10000; + never_runs = server.system.environment.BENCHMARK_CYCLES ?: 25000; once_runs = server.system.environment.BENCHMARK_CYCLES ?: 500; warmup_runs = 250; setting requesttimeout=never_runs+once_runs; @@ -101,7 +101,7 @@ time = getTickCount(units)-s; - _logger( "Running #type# [#numberFormat( runs )#] times, inspect: [#inspect#] took #numberFormat( time/1000 )# ms, or #numberFormat(runs/(time/1000/1000))# per second" ); + _logger( "Running #type# [#numberFormat( runs )#-#inspect#] took #numberFormat( time/1000 )# ms, or #numberFormat(runs/(time/1000/1000))# per second" ); ArrayAppend( results.data, { time: time/1000, inspect: inspect,