Inserts or replaces an existing document into Couchbase Server.
Namespace: Couchbase.CoreAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
SyntaxIOperationResult<T> Upsert<T>(
string key,
T value,
uint expiration,
ReplicateTo replicateTo,
PersistTo persistTo
)
IOperationResult<T> Upsert<T>(
string key,
T value,
uint expiration,
ReplicateTo replicateTo,
PersistTo persistTo
)
Function Upsert(Of T) (
key As String,
value As T,
expiration As UInteger,
replicateTo As ReplicateTo,
persistTo As PersistTo
) As IOperationResult(Of T)
Function Upsert(Of T) (
key As String,
value As T,
expiration As UInteger,
replicateTo As ReplicateTo,
persistTo As PersistTo
) As IOperationResult(Of T)
generic<typename T>
IOperationResult<T>^ Upsert(
String^ key,
T value,
unsigned int expiration,
ReplicateTo replicateTo,
PersistTo persistTo
)
generic<typename T>
IOperationResult<T>^ Upsert(
String^ key,
T value,
unsigned int expiration,
ReplicateTo replicateTo,
PersistTo persistTo
)
abstract Upsert :
key : string *
value : 'T *
expiration : uint32 *
replicateTo : ReplicateTo *
persistTo : PersistTo -> IOperationResult<'T>
abstract Upsert :
key : string *
value : 'T *
expiration : uint32 *
replicateTo : ReplicateTo *
persistTo : PersistTo -> IOperationResult<'T>
Parameters
- key
- Type: System.String
The unique key for indexing.
- value
- Type: T
The value for the key.
- expiration
- Type: System.UInt32
The time-to-live (ttl) for the key in seconds.
- replicateTo
- Type: Couchbase.ReplicateTo
The durability requirement for replication.
- persistTo
- Type: Couchbase.PersistTo
The durability requirement for persistence.
Type Parameters- T
- The Type of the value to be inserted.
Return Value
Type:
IOperationResult<T>An object implementing the
IOperationResult<T>interface.
RemarksExpirations over 30 * 24 * 60 * 60 (the amount of seconds in 30 days) are interpreted as a UNIX timestamp of the date at which the document expires.
see
documentation section about expiration.
See Also