Skip to content
/ UrlCache Public
forked from mcurry/url_cache

CakePHP Plugin - Automatically cache the results of calls to $this->Html->link(), which can be a major bottleneck.

Notifications You must be signed in to change notification settings

sams/UrlCache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Description

Whenever you use $this->Html->link() in your CakePHP views the Cake Router has to scan through all your routes until it finds a match. This can be slow if you have a lot of links on a page or use a lot of custom routes. By adding this code to your AppHelper the urls are cached, speeding up requests. The cache settings follow the same rules as the other Cake core cache settings. If debug is set to greater than 0 the cache expires in 10 seconds. With debug at 0 the cache is good for 999 days.

Instructions

  1. Download the plugin to /app/Plugin/UrlCache

  2. Put at the top of your app/View/Helper/AppHelper.php

    App::uses('UrlCacheAppHelper', 'UrlCache.View/Helper');

  3. Have your AppHelper extend UrlCacheAppHelper instead of Helper

    class AppHelper extends UrlCacheAppHelper { ... }

  4. Thats it! Just continue using $this->Html->link as you usually do.

By default all the cache will be stored in one file. You can set the option Configure::write('UrlCache.pageFiles', true) and each page will keep a seperate cache. I added this option in the event your site has a ton of unique urls don't want to store them all in one giant cache, which would need to be loaded each request.

About

CakePHP Plugin - Automatically cache the results of calls to $this->Html->link(), which can be a major bottleneck.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%