$object->append($key, $value [, $expiry ] [, $casunique ] [, $persistto ] [, $replicateto ]) |
Append a value to an existing key
|
$object->cas($casunique, $key, $value [, $expiry ]) |
Compare and set a value providing the supplied CAS key matches
|
$object->decrement($key, $offset) |
Decrement the value of an existing numeric key
|
$object->delete($key [, $casunique ]) |
Delete a key/value
|
$object->flush() |
Deletes all values from the corresponding bucket
|
$object->increment($key [, $offset ] [, $create ] [, $expiry ] [, $initial ]) |
Increment the value of an existing numeric key
|
$object->keyDurability($key, $casunique, $durability) |
Wait until the durability of a document has been reached
|
$object->keyDurabilityMulti($keycollection, $durability) |
Wait until the durability of a document has been reached
|
$object->observe($key, $casunique, $observedetails) |
Get the durability of a document
|
$object->observeMulti($keycollection, $observedetails) |
Get the durability of a document
|
$object->prepend($key, $value [, $expiry ] [, $casunique ] [, $persistto ] [, $replicateto ]) |
Prepend a value to an existing key
|
$object->touch($key, $expiry) |
Update the expiry time of an item
|
$object->touchMulti($keyarray, $expiry) |
Change the expiration time for multiple documents
|