Skip to content

PHPFluent/CacheBundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CacheBundle

A fluent cache bundle for Symfony 2.

Installation

composer require phpfluent/cachebundle

Update the settings.yml file

services:
    cache:
        class: Doctrine\Common\Cache\ApcCache

Register the bundle

 <?php
 //%/app/AppKernel.php

 $bundles = array(
   new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
   new Symfony\Bundle\TwigBundle\TwigBundle(),
   new Symfony\Bundle\MonologBundle\MonologBundle(),
   new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
   /**
    * Your bundles
    */
   new PHPFluent\Bundle\CacheBundle\CacheBundle(),
 );

Call it from your code

$cache = $this->get('phpfluent_cache');

$cache['foo'] = 'bar'; //Caching
echo $cache['foo'];//Retrieving from the cache

About

A fluent cache bundle for Symfony 2.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages