Documentation

Table Of Contents

Previous topic

< Class Phalcon\Cache\Frontend\Igbinary

Next topic

Class Phalcon\Cache\Frontend\None >

This Page

Class Phalcon\Cache\Frontend\Json

implements Phalcon\Cache\FrontendInterface

Allows to cache data converting/deconverting them to JSON. This adapter uses the json_encode/json_decode PHP’s functions As the data is encoded in JSON other systems accessing the same backend could process them

<?php

<?php

 // Cache the data for 2 days
 $frontCache = new \Phalcon\Cache\Frontend\Json(array(
    "lifetime" => 172800
 ));

 //Create the Cache setting memcached connection options
 $cache = new \Phalcon\Cache\Backend\Memcache($frontCache, array(
    'host' => 'localhost',
    'port' => 11211,
    'persistent' => false
 ));

 //Cache arbitrary data
 $cache->save('my-data', array(1, 2, 3, 4, 5));

 //Get data
 $data = $cache->get('my-data');

Methods

public __construct ([unknown $frontendOptions])

Phalcon\Cache\Frontend\Base64 constructor

public integer getLifetime ()

Returns the cache lifetime

public boolean isBuffering ()

Check whether if frontend is buffering output

public start ()

Starts output frontend. Actually, does nothing

public string getContent ()

Returns output cached content

public stop ()

Stops output frontend

public string beforeStore (unknown $data)

Serializes data before storing them

public mixed afterRetrieve (unknown $data)

Unserializes data after retrieval

Follow along: