PHP Classes

File: tests/altorouter/single-request-1000.php

Recommend this page to a friend!
  Classes of Alexey Dodonov   Mezon Router Benchmark   tests/altorouter/single-request-1000.php   Download  
File: tests/altorouter/single-request-1000.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mezon Router Benchmark
Measure the performance of PHP framework routers
Author: By
Last change:
Date: 1 year ago
Size: 941 bytes
 

Contents

Class file image Download
<?php

$benchmark
->registerTest(function () {
   
$startTime = microtime(true);
    for (
$i = 0; $i < \Mezon\Benchmark\Base::$iterationsAmount; $i ++) {
       
$router = \Mezon\Benchmark\RouteGenerator::generateAltorouterStaticRoutes(1000);

       
$router->match('/static/' . rand(0, 1000 - 1))['target']();
    }
    return
microtime(true) - $startTime;
},
"[altorouter/single-request/1000 routes] Resolving static routes %f per second\r\n");
   
   
$benchmark->registerTest(function () {
       
$startTime = microtime(true);
        for (
$i = 0; $i < \Mezon\Benchmark\Base::$iterationsAmount; $i ++) {
           
$router = \Mezon\Benchmark\RouteGenerator::generateAltorouterNonStaticRoutes(1000);

           
$router->match('/param/' . rand(0, 1000 - 1) . '/1')['target']();
        }
        return
microtime(true) - $startTime;
    },
"[altorouter/single-request/1000 routes] Resolving param. routes %f per second\r\n");