Store a byte array value in the bucket, and retrieve the full metadata associated with the pair.
Example:
// Add a new key
var result = client.store_bytes_result( StoreMode.ADD, "my-key", "example".data );
var cas = result.cas;
mode | The StoreMode for this action: ADD, REPLACE, or SET |
key | The key |
value | The value |
expires | Optionally, the unix timestamp when the key expires |
true if the key/value pair was stored successfully |