Decrements the value of a key by the delta. If the key doesn't exist, it will be created
and seeded with the defaut initial value 1.
Namespace: Couchbase.CoreAssembly: Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 2.0.0.0 (2.0.0.0)
SyntaxIOperationResult<ulong> Decrement(
string key,
ulong delta,
ulong initial,
TimeSpan expiration
)
IOperationResult<ulong> Decrement(
string key,
ulong delta,
ulong initial,
TimeSpan expiration
)
Function Decrement (
key As String,
delta As ULong,
initial As ULong,
expiration As TimeSpan
) As IOperationResult(Of ULong)
Function Decrement (
key As String,
delta As ULong,
initial As ULong,
expiration As TimeSpan
) As IOperationResult(Of ULong)
IOperationResult<unsigned long long>^ Decrement(
String^ key,
unsigned long long delta,
unsigned long long initial,
TimeSpan expiration
)
IOperationResult<unsigned long long>^ Decrement(
String^ key,
unsigned long long delta,
unsigned long long initial,
TimeSpan expiration
)
abstract Decrement :
key : string *
delta : uint64 *
initial : uint64 *
expiration : TimeSpan -> IOperationResult<uint64>
abstract Decrement :
key : string *
delta : uint64 *
initial : uint64 *
expiration : TimeSpan -> IOperationResult<uint64>
Parameters
- key
- Type: System.String
The key to us for the counter.
- delta
- Type: System.UInt64
The number to increment the key by.
- initial
- Type: System.UInt64
The initial value to use. If the key doesn't exist, this value will returned.
- expiration
- Type: System.TimeSpan
The time-to-live (ttl) for the counter.
Return Value
Type:
IOperationResult<UInt64>If the key doesn't exist, the server will respond with the initial value. If not the decremented value will be returned.
See Also