__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
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