Skip to content

Commit

Permalink
Update index.cfm
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Dec 21, 2024
1 parent f9987cf commit bc19a19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom/benchmark/index.cfm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<cfscript>
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;
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit bc19a19

Please sign in to comment.