This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // | |
| // Measure the time to execute two thousand jobs ten times. | |
| // | |
| require_once __DIR__.'/../vendor/autoload.php'; | |
| function benchmark($resque, $count) { | |
| $start = microtime(true); | |
| for($i=$count;$i > 0;--$i) { |
NewerOlder