Table of Contents
The Couchbase .NET Client Library store operations set information within the Couchbase database. These are distinct from the update operations in that the key does not have to exist within the Couchbase database before being stored.
Table 5.1. .NET Client Library Store Methods
| Method | Title |
|---|---|
object.ExecuteStore(storemode, key, value) | Store a value using the specified key and return a store operation result |
object.ExecuteStore(storemode, key, value, expiresat) | Store a value using the specified key with a specific expiry time and return a store operation result |
object.ExecuteStore(storemode, key, value, expiresat, persistto, replicateto) | Store a value using the specified key with a specific expiry time and return a store operation result |
object.ExecuteStore(storemode, key, value, persistto, replicateto) | Store a value using the specified key and return a store operation result |
object.ExecuteStore(storemode, key, value, validfor) | Store a value using the specified key with expiry time and return a store operation result |
object.ExecuteStore(storemode, key, value, validfor, persistto, replicateto) | Store a value using the specified key with expiry time and return a store operation result |
object.Store(storemode, key, value) | Store a value using the specified key |
object.Store(storemode, key, value, expiresat) | Store a value using the specified key with a specific expiry time |
object.Store(storemode, key, value, validfor) | Store a value using the specified key with expiry time |