object.append(key, value [, casunique ]) |
Append a value to an existing key
|
object.cas(key, expiry, flags, oldvalue, value) |
Compare and set a value providing the supplied CAS key matches
|
object.decr(key [, offset ] [, defaultvalue ] [, expiry ]) |
Decrement the value of an existing numeric key
|
object.delete(key [, casunique ] [, vbucket ]) |
Delete a key/value
|
object.flush() |
Deletes all values from the corresponding bucket
|
object.incr(key [, offset ] [, defaultvalue ] [, expiry ]) |
Increment the value of an existing numeric key
|
object.prepend(key, value [, casunique ]) |
Prepend a value to an existing key
|
object.sync_mutation(keyspecs) |
Sync mutation
|
object.sync_persistence(keyspecs) |
Sync persistence
|
object.sync_replication(sync-num-replicas, keyspecs) |
Sync replication
|
object.sync_replication_and_persistence(sync-num-replicas, keyspecs) |
Sync replication and persistence
|
object.sync_replication_or_persistence(sync-num-replicas, keyspecs) |
Sync replication or persistence
|
object.touch(key, expiry) |
Update the expiry time of an item
|