Kohana Cache provides a common interface to a variety of caching engines. Tags are supported where available natively to the cache system. Kohana Cache supports multiple instances of cache engines through a grouped singleton pattern.
Caching should be implemented with consideration. Generally, caching the result of resources is faster than reprocessing them. Choosing what, how and when to cache is vital. PHP APC is presently one of the fastest caching systems available, closely followed by Memcache. SQLite and File caching are two of the slowest cache methods, however usually faster than reprocessing a complex set of instructions.
Caching engines that use memory are considerably faster than the file based alternatives. But memory is limited whereas disk space is plentiful. If caching large datasets it is best to use file caching.
Kohana Cache uses configuration groups to create cache instances. A configuration group can use any supported driver, with successive groups using the same driver type if required.
Below is an example of a memcache server configuration.
return array(
'default' => array( // Default group
'driver' => 'memcache', // using Memcache driver
'servers' => array( // Available server definitions
array(
'host' => 'localhost',
'port' => 11211,
'persistent' => FALSE
)
),
'compression' => FALSE, // Use compression?
),
)
In cases where only one cache group is required, if the group is named default
there is
no need to pass the group name when instantiating a cache instance.
Below are the settings available to all types of cache driver.
Name | Required | Description |
---|---|---|
driver | YES | (string) The driver type to use |
Details of the settings specific to each driver are available within the drivers documentation.
Class declared in MODPATH/cache/classes/cache.php on line 3.
integer 3600
string
$defaultdefault driver to use
string(4) "file"
Kohana_Cache
$instancesinstances
array(0)
Config
$_configOverload the __clone() method to prevent cloning
void
public function __clone()
{
throw new Kohana_Cache_Exception('Cloning of Kohana_Cache objects is forbidden');
}
Delete a cache entry based on id
// Delete 'foo' entry from the default group
Cache::instance()->delete('foo');
// Delete 'foo' entry from the memcache group
Cache::instance('memcache')->delete('foo')
string
$id
required - Id to remove from cacheboolean
abstract public function delete($id);
Delete all cache entries.
Beware of using this method when using shared memory cache systems, as it will wipe every entry within the system for all clients.
// Delete all cache entries in the default group
Cache::instance()->delete_all();
// Delete all cache entries in the memcache group
Cache::instance('memcache')->delete_all();
boolean
abstract public function delete_all();
Retrieve a cached value entry by id.
// Retrieve cache entry from default group
$data = Cache::instance()->get('foo');
// Retrieve cache entry from default group and return 'bar' if miss
$data = Cache::instance()->get('foo', 'bar');
// Retrieve cache entry from memcache group
$data = Cache::instance('memcache')->get('foo');
string
$id
required - Id of cache to entrystring
$default
= NULL - Default value to return if cache missmixed
abstract public function get($id, $default = NULL);
Creates a singleton of a Kohana Cache group. If no group is supplied the default cache group is used.
// Create an instance of the default group
$default_group = Cache::instance();
// Create an instance of a group
$foo_group = Cache::instance('foo');
// Access an instantiated group directly
$foo_group = Cache::$instances['default'];
string
$group
= NULL - The name of the cache group to use [Optional]Cache
public static function instance($group = NULL)
{
// If there is no group supplied
if ($group === NULL)
{
// Use the default setting
$group = Cache::$default;
}
if (isset(Cache::$instances[$group]))
{
// Return the current group if initiated already
return Cache::$instances[$group];
}
$config = Kohana::config('cache');
if ( ! $config->offsetExists($group))
{
throw new Kohana_Cache_Exception('Failed to load Kohana Cache group: :group', array(':group' => $group));
}
$config = $config->get($group);
// Create a new cache type instance
$cache_class = 'Cache_'.ucfirst($config['driver']);
Cache::$instances[$group] = new $cache_class($config);
// Return the instance
return Cache::$instances[$group];
}
Set a value to cache with id and lifetime
$data = 'bar';
// Set 'bar' to 'foo' in default group, using default expiry
Cache::instance()->set('foo', $data);
// Set 'bar' to 'foo' in default group for 30 seconds
Cache::instance()->set('foo', $data, 30);
// Set 'bar' to 'foo' in memcache group for 10 minutes
if (Cache::instance('memcache')->set('foo', $data, 600))
{
// Cache was set successfully
return
}
string
$id
required - Id of cache entrystring
$data
required - Data to set to cacheinteger
$lifetime
= integer 3600 - Lifetime in secondsboolean
abstract public function set($id, $data, $lifetime = 3600);
Ensures singleton pattern is observed, loads the default expiry
array
$config
required - Configurationprotected function __construct(array $config)
{
$this->_config = $config;
}
Replaces troublesome characters with underscores.
// Sanitize a cache id
$id = $this->_sanitize_id($id);
string
$id
required - Id of cache to sanitizestring
protected function _sanitize_id($id)
{
// Change slashes and spaces to underscores
return str_replace(array('/', '\\', ' '), '_', $id);
}