Caching Driver¶
CodeIgniter features wrappers around some of the most popular forms of fast and dynamic caching. All but file-based caching require specific server requirements, and a Fatal Exception will be thrown if server requirements are not met.
Example Usage¶
The following example shows a common usage pattern within your controllers.
if (! $foo = cache('foo'))
{
echo 'Saving to the cache!<br />';
$foo = 'foobarbaz!';
// Save into the cache for 5 minutes
cache()->save('foo', $foo, 300);
}
echo $foo;
You can grab an instance of the cache engine directly through the Services class:
$cache = \Config\Services::cache();
$foo = $cache->get('foo');
Configuring the Cache¶
All configuration for the cache engine is done in app/Config/Cache.php. In that file, the following items are available.
$handler
The is the name of the handler that should be used as the primary handler when starting up the engine. Available names are: dummy, file, memcached, redis, predis, wincache.
$backupHandler
In the case that the first choice $handler is not available, this is the next cache handler to load. This is commonly the file handler since the file system is always available, but may not fit more complex, multi-server setups.
$prefix
If you have more than one application using the same cache storage, you can add a custom prefix string here that is prepended to all key names.
$file
This is an array of settings specific to the File
handler to determine how it should save the cache files.
$memcached
This is an array of servers that will be used when using the Memcache(d)
handler.
$redis
The settings for the Redis server that you wish to use when using the Redis
and Predis
handler.
Class Reference¶
-
isSupported
()¶ Returns: true
if supported,false
if notReturn type: bool
-
get($key): mixed
Parameters: - $key (string) – Cache item name
Returns: Item value or
null
if not foundReturn type: mixed
This method will attempt to fetch an item from the cache store. If the item does not exist, the method will return NULL.
Example:
$foo = $cache->get('my_cached_item');
-
remember
(string $key, int $ttl, Closure $callback)¶ Parameters: - $key (string) – Cache item name
- $ttl (int) – Time to live in seconds
- $callback (Closure) – Callback to invoke when the cache item returns null
Returns: The value of the cache item
Return type: mixed
Gets an item from the cache. If
null
was returned, this will invoke the callback and save the result. Either way, this will return the value.
-
save
(string $key, $data[, int $ttl = 60[, $raw = false]])¶ Parameters: - $key (string) – Cache item name
- $data (mixed) – the data to save
- $ttl (int) – Time To Live, in seconds (default 60)
- $raw (bool) – Whether to store the raw value
Returns: true
on success,false
on failureReturn type: bool
This method will save an item to the cache store. If saving fails, the method will return
false
.Example:
$cache->save('cache_item_id', 'data_to_cache');
Note
The $raw
parameter is only utilized by Memcache,
in order to allow usage of increment()
and decrement()
.
-
delete($key): bool
Parameters: - $key (string) – name of cached item
Returns: true
on success,false
on failureReturn type: bool
This method will delete a specific item from the cache store. If item deletion fails, the method will return FALSE.
Example:
$cache->delete('cache_item_id');
-
increment($key[, $offset = 1]): mixed
Parameters: - $key (string) – Cache ID
- $offset (int) – Step/value to add
Returns: New value on success,
false
on failureReturn type: mixed
Performs atomic incrementation of a raw stored value.
Example:
// 'iterator' has a value of 2 $cache->increment('iterator'); // 'iterator' is now 3 $cache->increment('iterator', 3); // 'iterator' is now 6
-
decrement($key[, $offset = 1]): mixed
Parameters: - $key (string) – Cache ID
- $offset (int) – Step/value to reduce by
Returns: New value on success,
false
on failureReturn type: mixed
Performs atomic decrementation of a raw stored value.
Example:
// 'iterator' has a value of 6 $cache->decrement('iterator'); // 'iterator' is now 5 $cache->decrement('iterator', 2); // 'iterator' is now 3
-
clean
()¶ Returns: true
on success,false
on failureReturn type: bool This method will ‘clean’ the entire cache. If the deletion of the cache files fails, the method will return FALSE.
Example:
$cache->clean();
-
getCacheInfo
()¶ Returns: Information on the entire cache database Return type: mixed This method will return information on the entire cache.
Example:
var_dump($cache->getCacheInfo());
Note
The information returned and the structure of the data is dependent on which adapter is being used.
-
getMetadata
(string $key)¶ Parameters: - $key (string) – Cache item name
Returns: Metadata for the cached item
Return type: mixed
This method will return detailed information on a specific item in the cache.
Example:
var_dump($cache->getMetadata('my_cached_item'));
Note
The information returned and the structure of the data is dependent on which adapter is being used.
Drivers¶
File-based Caching¶
Unlike caching from the Output Class, the driver file-based caching allows for pieces of view files to be cached. Use this with care, and make sure to benchmark your application, as a point can come where disk I/O will negate positive gains by caching. This requires a cache directory to be really writable by the application.
Memcached Caching¶
Memcached servers can be specified in the cache configuration file. Available options are:
public $memcached = [
'host' => '127.0.0.1',
'port' => 11211,
'weight' => 1,
'raw' => false,
];
For more information on Memcached, please see https://www.php.net/memcached.
WinCache Caching¶
Under Windows, you can also utilize the WinCache driver.
For more information on WinCache, please see https://www.php.net/wincache.
Redis Caching¶
Redis is an in-memory key-value store which can operate in LRU cache mode. To use it, you need Redis server and phpredis PHP extension.
Config options to connect to redis server stored in the cache configuration file. Available options are:
public $redis = [
'host' => '127.0.0.1',
'password' => null,
'port' => 6379,
'timeout' => 0,
'database' => 0,
];
For more information on Redis, please see https://redis.io.
Predis Caching¶
Predis is a flexible and feature-complete PHP client library for the Redis key-value store. To use it, from the command line inside your project root:
composer require predis/predis
For more information on Redis, please see https://github.com/nrk/predis.
Dummy Cache¶
This is a caching backend that will always ‘miss.’ It stores no data, but lets you keep your caching code in place in environments that don’t support your chosen cache.