Méthode |
Description |
|
__get ( string $variable ) : mixed |
Magic method to provide an accessor (getter) to protected class variables. |
|
clear ( ) : boolean |
Clears entire cache by flushing it. All cache keys using the
configuration but *without* honoring the scope are removed. |
|
decrement ( string $key, integer $offset = 1 ) : integer | boolean |
Performs a decrement operation on specified numeric cache item. |
|
delete ( array $keys ) : boolean |
Will attempt to remove specified keys from the user space cache. |
|
increment ( string $key, integer $offset = 1 ) : integer | boolean |
Performs an increment operation on specified numeric cache item. |
|
read ( array $keys ) : array |
Read values from the cache. Will attempt to return an array of data
containing key/value pairs of the requested data. |
|
write ( array $keys, null | string $expiry = null ) : boolean |
Write values to the cache. |
|