X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Fbenchmarks%2FBenchmarker.php;h=c198e0ff3e0b6025bc21fdcf742b1b78bc848f01;hb=6b305fcf55b32972396bfa2e90d85abe55c4c0a4;hp=822f1a6a8b8577c5052dcd485255f8c794620eba;hpb=8fc67e5592f7cd6a44aa470887688c71c6edca68;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/benchmarks/Benchmarker.php b/maintenance/benchmarks/Benchmarker.php index 822f1a6a8b..c198e0ff3e 100644 --- a/maintenance/benchmarks/Benchmarker.php +++ b/maintenance/benchmarks/Benchmarker.php @@ -5,7 +5,7 @@ */ /** - * Create a doxygen subgroup of Maintenance for benchmarks + * Base code for benchmark scripts. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,6 +28,12 @@ */ require_once( __DIR__ . '/../Maintenance.php' ); + +/** + * Base class for benchmark scripts. + * + * @ingroup Benchmark + */ abstract class Benchmarker extends Maintenance { private $results; @@ -47,11 +53,11 @@ abstract class Benchmarker extends Maintenance { } $bench_number++; - $start = wfTime(); + $start = microtime( true ); for( $i=0; $i<$count; $i++ ) { call_user_func_array( $bench['function'], $bench['args'] ); } - $delta = wfTime() - $start; + $delta = microtime( true ) - $start; // function passed as a callback if( is_array( $bench['function'] ) ) { @@ -61,7 +67,7 @@ abstract class Benchmarker extends Maintenance { $this->results[$bench_number] = array( 'function' => $bench['function'], - 'arguments' => $bench['args'], + 'arguments' => $bench['args'], 'count' => $count, 'delta' => $delta, 'average' => $delta / $count,