DEV Community

Cover image for New benchmark: Mezon Router is up to 931 times faster then Rareloop Router
alexdodonov
alexdodonov

Posted on • Edited on

4 2

New benchmark: Mezon Router is up to 931 times faster then Rareloop Router

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:

  1. 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;
  2. 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;
Enter fullscreen mode Exit fullscreen mode
// 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;
Enter fullscreen mode Exit fullscreen mode

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;
Enter fullscreen mode Exit fullscreen mode
// 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;
Enter fullscreen mode Exit fullscreen mode

Results

Rareloop Router benchmark

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

It will be great if you will contribute something to this project. Documentation, sharing the project in your social media, bug fixing, refactoring, or even submitting issue with question or feature request. Thanks anyway )

Image of Datadog

Create and maintain end-to-end frontend tests

Learn best practices on creating frontend tests, testing on-premise apps, integrating tests into your CI/CD pipeline, and using Datadog’s testing tunnel.

Download The Guide

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay