$_reflections $_reflections : array Array of methods and properties for the parent class(es) Type array
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(string $id) : mixed Fetch from cache Parameters string $id Cache ID Returns mixed — Data on success, FALSE on failure
save() save(string $id, mixed $data, integer $ttl = 60, boolean $raw = FALSE) : boolean Save Parameters string $id Cache ID mixed $data Data being cached integer $ttl Time to live boolean $raw Whether to store the raw value Returns boolean — TRUE on success, FALSE on failure
delete() delete(mixed $id) : boolean Delete from Cache Parameters mixed $id key to be deleted. 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
get_metadata() get_metadata(mixed $id) : mixed Get Cache Metadata Parameters mixed $id key to get cache metadata on Returns mixed — FALSE on failure, array on success.
is_supported() is_supported() : boolean Is supported Returns FALSE if memcached is not supported on the system. If it is, we setup the memcached object & return TRUE Returns boolean