Skip to content

CakePHP Cache plugin for caching views as static cache files.

License

Notifications You must be signed in to change notification settings

symbwell/cakephp-cache

 
 

Repository files navigation

Cache plugin for CakePHP

Build Status Coverage Status Latest Stable Version Minimum PHP Version License Coding Standards

CakePHP 3.x version.

What is it for?

It is the successor of the 2.x CacheHelper and allows you to cache your complete views as HTML. No dynamic parts anymore, just complete static content ready to be delivered. If you don't want to set up ESI and other third party caching software, this CakePHP only approach does the job.

It uses a Middleware and a Component. Why not a helper anymore? Mainly because a helper is too limited and would not be able to cache serialized views, e.g. JSON, CSV, RSS content which have been build view-less.

Demo

sandbox.dereuromark.de/sandbox/cache-examples/

Installation

You can install this plugin into your CakePHP application using composer.

The recommended way to install composer packages is:

composer require dereuromark/cakephp-cache

Also don't forget to load the plugin in your bootstrap:

Plugin::load('Cache');
// or
Plugin::loadAll();

Usage

This plugin contains a full-page view cache solution as well as a partial cache solution.

For details see /docs.

About

CakePHP Cache plugin for caching views as static cache files.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.6%
  • HTML 0.4%