get() get( $id) : mixed Get Look for a value in the cache. If it exists, return the data if not, return FALSE Parameters $id Returns mixed — value that is stored/FALSE on failure
save() save( $id, $data, $ttl = 60) : boolean Cache Save Parameters $id $data $ttl Returns boolean — true on success/false on failure
delete() delete( $id) : boolean Delete from Cache Parameters $id Returns boolean — true on success/false on failure
cache_info() cache_info( $type = 'user') : mixed Cache Info Parameters $type Returns mixed — array on success, false on failure
get_metadata() get_metadata( $id) : mixed Get Cache Metadata Parameters $id Returns mixed — return value from child method
is_supported() is_supported( $driver) : array Is the requested driver supported in this environment? Parameters $driver Returns array
_initialize() _initialize( $config) : void Initialize Initialize class properties based on the configuration array. Parameters $config