\CI_Cache

CodeIgniter Caching Class

This class enables you to create "Driver" libraries that add runtime ability to extend the capabilities of a class via additional driver objects

Summary

Methods
Properties
Constants
__get()
load_driver()
__construct()
get()
save()
delete()
increment()
decrement()
clean()
cache_info()
get_metadata()
is_supported()
get_loaded_driver()
$key_prefix
No constants found
No protected methods found
$valid_drivers
$lib_name
$_cache_path
$_adapter
$_backup_driver
N/A
No private methods found
No private properties found
N/A

Properties

$key_prefix

$key_prefix : string

Cache key prefix

Type

string

$valid_drivers

$valid_drivers : array

Valid cache drivers

Type

array

$lib_name

$lib_name : string

Name of the current class - usually the driver class

Type

string

$_cache_path

$_cache_path : string

Path of cache files (if file-based cache)

Type

string

$_adapter

$_adapter : mixed

Reference to the driver

Type

mixed

$_backup_driver

$_backup_driver : string

Fallback driver

Type

string

Methods

__get()

__get(  $child) : object

Get magic method

The first time a child is used it won't exist, so we instantiate it subsequents calls will go straight to the proper child.

Parameters

$child

Returns

object —

Child class

load_driver()

load_driver(  $child) : object

Load driver

Separate load_driver call to support explicit driver load by library or user

Parameters

$child

Returns

object —

Child class

__construct()

__construct(array  $config = array()) : void

Constructor

Initialize class properties based on the configuration array.

Parameters

array $config

= array()

get()

get(string  $id) : mixed

Get

Look for a value in the cache. If it exists, return the data if not, return FALSE

Parameters

string $id

Returns

mixed —

value matching $id or FALSE on failure

save()

save(string  $id, mixed  $data, integer  $ttl = 60, boolean  $raw = FALSE) : boolean

Cache Save

Parameters

string $id

Cache ID

mixed $data

Data to store

integer $ttl

Cache TTL (in seconds)

boolean $raw

Whether to store the raw value

Returns

boolean —

TRUE on success, FALSE on failure

delete()

delete(string  $id) : boolean

Delete from Cache

Parameters

string $id

Cache ID

Returns

boolean —

TRUE on success, FALSE on failure

increment()

increment(string  $id, integer  $offset = 1) : mixed

Increment a raw value

Parameters

string $id

Cache ID

integer $offset

Step/value to add

Returns

mixed —

New value on success or FALSE on failure

decrement()

decrement(string  $id, integer  $offset = 1) : mixed

Decrement a raw value

Parameters

string $id

Cache ID

integer $offset

Step/value to reduce by

Returns

mixed —

New value on success or FALSE on failure

clean()

clean() : boolean

Clean the cache

Returns

boolean —

TRUE on success, FALSE on failure

cache_info()

cache_info(string  $type = 'user') : mixed

Cache Info

Parameters

string $type

= 'user' user/filehits

Returns

mixed —

array containing cache info on success OR FALSE on failure

get_metadata()

get_metadata(string  $id) : mixed

Get Cache Metadata

Parameters

string $id

key to get cache metadata on

Returns

mixed —

cache item metadata

is_supported()

is_supported(string  $driver) : array

Is the requested driver supported in this environment?

Parameters

string $driver

The driver to test

Returns

array

get_loaded_driver()

get_loaded_driver() : string

Get currently loaded driver

Returns

string