RedisClientDecrementKey 方法 (String, Int64) |
将 key 所储存的值减去减量 decrement 。如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 DECR 操作。
如果值包含错误的类型,或字符串类型的值不能表示为数字,那么返回一个错误。
本操作的值限制在 64 位(bit)有符号数字表示之内。
返回减去 decrement 之后, key 的值。
命名空间:
HslCommunication.Enthernet.Redis
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public OperateResult<long> DecrementKey(
string key,
long value
)
Public Function DecrementKey (
key As String,
value As Long
) As OperateResult(Of Long)
public:
OperateResult<long long>^ DecrementKey(
String^ key,
long long value
)
member DecrementKey :
key : string *
value : int64 -> OperateResult<int64>
参数
- key
- 类型:SystemString
关键字 - value
- 类型:SystemInt64
操作的值
返回值
类型:
OperateResultInt64返回减去 decrement 之后, key 的值。
参见