\CI_Cache_redis

CodeIgniter Redis Caching Class

This class enables you to create drivers for a Library based on the Driver Library. It handles the drivers' access to the parent library

Summary

Methods
Properties
Constants
decorate()
__call()
__get()
__set()
__construct()
get()
save()
delete()
increment()
decrement()
clean()
cache_info()
get_metadata()
is_supported()
__destruct()
No public properties found
No constants found
No protected methods found
$_parent
$_methods
$_properties
$_reflections
$_default_config
$_redis
N/A
No private methods found
No private properties found
N/A

Properties

$_parent

$_parent : object

Instance of the parent class

Type

object

$_methods

$_methods : array

List of methods in the parent class

Type

array

$_properties

$_properties : array

List of properties in the parent class

Type

array

$_reflections

$_reflections : array

Array of methods and properties for the parent class(es)

Type

array

$_default_config

$_default_config : array

Default config

Type

array

$_redis

$_redis : \Redis

Redis connection

Type

\Redis

Methods

decorate()

decorate(  $parent) : void

Decorate

Decorates the child with the parent driver lib's methods and properties

Parameters

$parent

__call()

__call(  $method,   $args = array()) : mixed

__call magic method

Handles access to the parent driver library's methods

Parameters

$method
$args

Returns

mixed

__get()

__get(  $var) : mixed

__get magic method

Handles reading of the parent driver library's properties

Parameters

$var

Returns

mixed

__set()

__set(  $var,   $val) : mixed

__set magic method

Handles writing to the parent driver library's properties

Parameters

$var
$val

Returns

mixed

__construct()

__construct() : void

Class constructor

Setup Redis

Loads Redis config file if present. Will halt execution if a Redis connection can't be established.

get()

get(string  $key) : mixed

Get cache

Parameters

string $key

Cache ID

Returns

mixed

save()

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

Save cache

Parameters

string $id

Cache ID

mixed $data

Data to save

integer $ttl

Time to live in seconds

boolean $raw

Whether to store the raw value (unused)

Returns

boolean —

TRUE on success, FALSE on failure

delete()

delete(string  $key) : boolean

Delete from cache

Parameters

string $key

Cache key

Returns

boolean

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 cache

Returns

boolean

cache_info()

cache_info(string  $type = NULL) : array

Get cache driver info

Parameters

string $type

Not supported in Redis. Only included in order to offer a consistent cache API.

Returns

array

get_metadata()

get_metadata(string  $key) : array

Get cache metadata

Parameters

string $key

Cache key

Returns

array

is_supported()

is_supported() : boolean

Check if Redis driver is supported

Returns

boolean

__destruct()

__destruct() : void

Class destructor

Closes the connection to Redis if present.