2017 © Pedro Peláez
 

library route-cache

More speed with Cache Routing. This module is part of the Learn ZF2 book

image

learnzf2/route-cache

More speed with Cache Routing. This module is part of the Learn ZF2 book

  • Tuesday, October 13, 2015
  • by slaff
  • Repository
  • 3 Watchers
  • 9 Stars
  • 1,489 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 2 Open issues
  • 1 Versions
  • 3 % Grown

The README.md

Simple module that speeds up the route matching using caching., (*1)

This module is part of the "Learn ZF2" book (http://learnzf2.com) that can help you learn Zend Framework 2 (ZF2) and improve the performance of your ZF2 application., (*2)

We have noticed that in real world applications routing can take 300 ms or more. With this module the routing can take less than 40 ms., (*3)

Installation

Run the following command from the root folder of your ZF2 application., (*4)

php composer.phar require learnzf2/route-cache:dev-master

Setup

First: To enable the module make sure to add it to the list of modules in your config/application.config.php., (*5)

Second: This module requires a cache service that is called "var-cache". The cache service should be able to store variables. If you already have such a service but it has a different name then you can use aliases in the service_manager section of your application configuration. This can be achieved by adding the following lines:, (*6)

'service_manager' = array(
     // ...
     'aliases' => array (
        // ...
        'var-cache' => '<your-cache-service-name>'
     )
),

If you don't have a cache service in your application then copy the file vendor/learnzf2/route-cache/config/cache.local.php.dist to config/autoload/cache.local.php., (*7)

The Versions

13/10 2015

dev-master

9999999-dev http://learnzf2.com

More speed with Cache Routing. This module is part of the Learn ZF2 book

  Sources   Download

BSD-3-Clause

The Requires

 

zf2 performance book learn route cache