RedisClientIncrementKey 方法 (String) |
将 key 中储存的数字值增一。如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 INCR 操作。
如果值包含错误的类型,或字符串类型的值不能表示为数字,那么返回一个错误。
返回执行 INCR 命令之后 key 的值。
命名空间:
HslCommunication.Enthernet.Redis
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public OperateResult<long> IncrementKey(
string key
)
Public Function IncrementKey (
key As String
) As OperateResult(Of Long)
public:
OperateResult<long long>^ IncrementKey(
String^ key
)
member IncrementKey :
key : string -> OperateResult<int64>
参数
- key
- 类型:SystemString
关键字
返回值
类型:
OperateResultInt64返回执行 INCR 命令之后 key 的值。
参见