Search:

Search all manuals
Search this manual
Manual
Couchbase Client Library: .NET (C#) 1.0
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
Couchbase Client Library: .NET (C#) 1.0
Child Sections
Chapters

Chapter 5. Store Operations

Table of Contents

5.1. Store Methods

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

MethodTitle
object.ExecuteStore(StoreMode storemode, string key, object value) Store a value using the specified key and return a store operation result
object.ExecuteStore(StoreMode storemode, string key, object value, DateTime expiresat) Store a value using the specified key with a specific expiry time and return a store operation result
object.ExecuteStore(StoreMode storemode, string key, object value, DateTime expiresat, enum persistto, enum replicateto) Store a value using the specified key with a specific expiry time and return a store operation result
object.ExecuteStore(StoreMode storemode, string key, object value, enum persistto, enum replicateto) Store a value using the specified key and return a store operation result
object.ExecuteStore(StoreMode storemode, string key, object value, TimeSpan validfor) Store a value using the specified key with expiry time and return a store operation result
object.ExecuteStore(StoreMode storemode, string key, object value, TimeSpan validfor, enum persistto, enum replicateto) Store a value using the specified key with expiry time and return a store operation result
object.Store(StoreMode storemode, string key, object value) Store a value using the specified key
object.Store(StoreMode storemode, string key, object value, DateTime expiresat) Store a value using the specified key with a specific expiry time
object.Store(StoreMode storemode, string key, object value, TimeSpan validfor) Store a value using the specified key with expiry time