Hello people! Since the previous benchmark Mezon Router have got a bugfix wich increases productivity. New benchmark results can be seen on this article.
As usual we have two cases:
- http server accepts request, launches php script, which handles this request, and then all script data uploads from memory. All following requests are processed in the same way. In this case very critical to launch script as soon as possible and we do not have time for long pre-compilations and preparations. Because all of it will be lost after the script will finish working;
- php script is launching, initiating all internal components (and router is one of them) and then starting processing requests. This case can be organized via for example react-php. It differs from the previous case because we can spend reasonable time to pre-compile routes for faster processing.
The first case
// static routes
$_SERVER['REQUEST_METHOD'] = 'GET';
$router = \Mezon\Benchmark\RouteGenerator::generateRareloopStaticRoutes(1000);
$startTime = microtime(true);
for ($i = 0; $i < \Mezon\Benchmark\Base::$iterationsAmount; $i ++) {
$_SERVER['REQUEST_URI'] = '/static/' . rand(0, 1000 - 1);
$request = Laminas\Diactoros\ServerRequestFactory::fromGlobals();
$router->match($request);
}
return microtime(true) - $startTime;
// non-static routes
$_SERVER['REQUEST_METHOD'] = 'GET';
$router = \Mezon\Benchmark\RouteGenerator::generateRareloopNonStaticRoutes(1000);
$startTime = microtime(true);
for ($i = 0; $i < \Mezon\Benchmark\Base::$iterationsAmount; $i ++) {
$_SERVER['REQUEST_URI'] = '/param/' . rand(0, 1000 - 1) . '/1';
$request = Laminas\Diactoros\ServerRequestFactory::fromGlobals();
$router->match($request);
}
return microtime(true) - $startTime;
The second case
// static routes
$_SERVER['REQUEST_METHOD'] = 'GET';
$router = \Mezon\Benchmark\RouteGenerator::generateRareloopStaticRoutes(1000);
$startTime = microtime(true);
for ($i = 0; $i < \Mezon\Benchmark\Base::$iterationsAmount; $i ++) {
$_SERVER['REQUEST_URI'] = '/static/' . rand(0, 1000 - 1);
$request = Laminas\Diactoros\ServerRequestFactory::fromGlobals();
$router->match($request);
}
return microtime(true) - $startTime;
// non-static routes
$_SERVER['REQUEST_METHOD'] = 'GET';
$router = \Mezon\Benchmark\RouteGenerator::generateRareloopNonStaticRoutes(1000);
$startTime = microtime(true);
for ($i = 0; $i < \Mezon\Benchmark\Base::$iterationsAmount; $i ++) {
$_SERVER['REQUEST_URI'] = '/param/' . rand(0, 1000 - 1) . '/1';
$request = Laminas\Diactoros\ServerRequestFactory::fromGlobals();
$router->match($request);
}
return microtime(true) - $startTime;
Results
As you can see Mezon router is in all cases is faster then Rareloop Route.
What's next?
More articles can be found in my Twitter
Mezon Framework
What is mezon/router?
mezon/router now is:
- framework for routing with 100% code coverage
- 10.0 points on scrutinizer-ci.com
- router is a part of the Mezon Project
Repo on github.com: https://github.com/alexdodonov/mezon-router
Top comments (0)