RedisClientWriteKey 方法 (String, String) |
将字符串值 value 关联到 key 。
如果 key 已经持有其他值, SET 就覆写旧值,无视类型。
对于某个原本带有生存时间(TTL)的键来说, 当 SET 命令成功在这个键上执行时,这个键原有的 TTL 将被清除。
命名空间:
HslCommunication.Enthernet.Redis
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public OperateResult WriteKey(
string key,
string value
)
Public Function WriteKey (
key As String,
value As String
) As OperateResult
public:
OperateResult^ WriteKey(
String^ key,
String^ value
)
member WriteKey :
key : string *
value : string -> OperateResult
参数
- key
- 类型:SystemString
关键字 - value
- 类型:SystemString
数据值
返回值
类型:
OperateResult SET 在设置操作成功完成时,才返回 OK 。
参见