Méthode |
Description |
|
__construct ( MatthiasMullie\Scrapbook\KeyValueStore $cache ) |
|
|
add ( $key, $value, $expire ) |
|
|
cas ( $token, $key, $value, $expire ) |
|
|
decrement ( $key, $offset = 1, $initial, $expire ) |
|
|
delete ( $key ) |
|
|
deleteMulti ( array $keys ) |
|
|
flush ( ) |
|
|
get ( $key, &$token = null ) |
In addition to all writes being stored to $local, we'll also
keep get() values around ;). |
|
getMulti ( array $keys, array &$tokens = null ) |
In addition to all writes being stored to $local, we'll also
keep get() values around ;). |
|
increment ( $key, $offset = 1, $initial, $expire ) |
|
|
replace ( $key, $value, $expire ) |
|
|
set ( $key, $value, $expire ) |
|
|
setMulti ( array $items, $expire ) |
|
|
touch ( $key, $expire ) |
|
|