Append a value to an existing key
append key valueWhere:
key (binary) -
Document ID used to identify the value
value (binary) -
Value to be stored
Perl (Cache::Memcached::libmemcached)
$object->append($key, $value)
Returns: (
Binary object
)
Ruby (Fauna)
object.append(key, value [, ruby-append-options ])
Returns: fixnum (
The CAS value for the object stored. A fixed number
)
PHP (Couchbase PHP SDK)
$object->append($key, $value [, $expiry ] [, $casunique ] [, $persistto ] [, $replicateto ])
Returns: scalar; supported values:
$object->appendByKey($master_key, $key, $value [, $expiry ])
Returns: scalar (
Binary object
)
Java (spymemcached)
client.append(casunique, key, value)
Returns: Object (
Binary object
)
client.append(casunique, key, value, transcoder)
Returns: Object (
Binary object
)
.NET Client Library
object.Append(key, value)
Returns: Object (
Binary object
)
object.Append(key, casunique, value)
Returns: Object (
Binary object
)
object.ExecuteAppend(key, value)
Returns: IConcatOperationResult (
Concat operation result
)
object.ExecuteAppend(key, casunique, value)
Returns: IConcatOperationResult (
Concat operation result
)
memcached text protocol
append key flags expiry value_length
Returns: binary-string (
Binary object
)
append key flags expiry value_length noreply
Returns: binary-string (
Binary object
)
Python
object.append(key, value [, casunique ])
Returns: object (
Binary object
)