DEV Community

Cover image for New PHP router wich is 7 to 15 times faster then Symfony router
alexdodonov
alexdodonov

Posted on • Updated on

New PHP router wich is 7 to 15 times faster then Symfony router

Intro

Hi people! I want to continue the previous article in wich I have compared mezon/router with the klein router.

And in this article I shall compare mezon router with the Symfony routing class.

Benchmark for mezon/router

But now I have decided to change benchmark a little bit. Since now we shall take into consideration not only routing itself but also creation of the router object.

For example we shall benchmark not only this code:

for ($i = 0; $i < $iterationCount1; $i ++) {
    $routerTest1->callRoute('/static');
}
Enter fullscreen mode Exit fullscreen mode

But this one:

for ($i = 0; $i < $iterationCount1; $i ++) {
    $routerTest1 = new \Mezon\Router\Router();
    $routerTest1->addRoute('/static', function () {
        return 'static';
    }, 'GET');
    $routerTest1->callRoute('/static');
}
Enter fullscreen mode Exit fullscreen mode

Benchmark for klein/klein

The same changes will be made for klein benchmark:

for ($i = 0; $i < $iterationCount1; $i ++) {
    $routerTest1 = new \Klein\Klein();
    $routerTest1->respond('GET', '/static', function () {
        return 'static';
    });
    $routerTest1->dispatch(null,null,true,\Klein\Klein::DISPATCH_CAPTURE_AND_RETURN);
}
Enter fullscreen mode Exit fullscreen mode

And:

for ($i = 0; $i < $iterationCount2; $i ++) {
    $routerTest2 = new \Klein\Klein();
    $routerTest2->respond('GET', '/[i:id]', function () {
        return 'param';
    });
    $routerTest2->dispatch(null,null,true,\Klein\Klein::DISPATCH_CAPTURE_AND_RETURN);
}
Enter fullscreen mode Exit fullscreen mode

Benchmark for symfony routing

And now it is time to look at the symphony benchmark code:

$iterationCount1 = 10000;
$startTime1 = microtime(true);
for ($i = 0; $i < $iterationCount1; $i ++) {
    $static = new Route('/static', [
        'controller' => function () {
            return 'static';
        }
    ]);
    $staticRoutes = new RouteCollection();
    $staticRoutes->add('static', $static);

    $staticContext = new RequestContext();
    $staticContext->fromRequest(Request::createFromGlobals());

    $staticMatcher = new UrlMatcher($staticRoutes, $staticContext);
    $parameters = $staticMatcher->match('/static');
    $parameters['controller']();
}
$endTime1 = microtime(true);
Enter fullscreen mode Exit fullscreen mode

And for URLs with parameters:

$iterationCount2 = 10000;
$startTime2 = microtime(true);
for ($i = 0; $i < $iterationCount2; $i ++) {
    $param = new Route('/{id}', [
        'controller' => function () {
            return 'param';
        },
        [
            'id' => '[0-9]+'
        ]
    ]);

    $paramRoutes = new RouteCollection();
    $paramRoutes->add('param', $param);

    $paramContext = new RequestContext();
    $paramContext->fromRequest(Request::createFromGlobals());

    $paramMatcher = new UrlMatcher($paramRoutes, $paramContext);
    $paramMatcher->match('/1')['controller']();
}
$endTime2 = microtime(true);
Enter fullscreen mode Exit fullscreen mode

And the results are (the bigger numbers means better):

table

graph

As you can see - Mezon router is 7 to 15 times faster than Symfony router.

Learn more

More information can be found here:

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 )

Top comments (5)

Collapse
 
nicolasgrekas profile image
Nicolas Grekas • Edited

Hello, thanks for contributing to the space of routing libraries in PHP.
FYI, your benchmark for the Symfony router is using the slowest path supported by the component.
If you really want to compare its performance to your work, you should use the CompiledUrlMatcher.
AFAIK, this is the fastest PHP Router existing to date.
I would be very (and happily) surprised if your router were (significantly) faster. Let me know!
Check medium.com/@nicolas.grekas/making-... for some background on the technology.

Collapse
 
alexdodonov profile image
alexdodonov

Hi! I have benchmarked CompiledUrlMatcher - dev.to/alexdodonov/real-life-compa...

Collapse
 
freedom profile image
Freedom • Edited

How about memory consumption and latency?

You could compare your benchmark there, assume is around 100th while Symfony is at 145th:
github.com/the-benchmarker/web-fra...

Router isn't the bottleneck. Both API and data processing are the problem you could look in another language for robust and reliability where speed is a concern and static compiled language are exist to solve these problem.

Collapse
 
alexdodonov profile image
alexdodonov

Thanks for your comment. I shall benchmark memory consumption in the next article.

Collapse
 
alexdodonov profile image
alexdodonov

Any comments?)