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
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
cache_info() cache_info( $type = NULL) : 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 — array on success/false on failure
is_supported() is_supported() is_supported() Check to see if APC is available on this system, bail if it isn't.