RedisClientPoolWriteHashKey 方法 (String, String, String) |
将哈希表 key 中的域 field 的值设为 value 。
如果 key 不存在,一个新的哈希表被创建并进行 HSET 操作。
如果域 field 已经存在于哈希表中,旧值将被覆盖。
如果 field 是哈希表中的一个新建域,并且值设置成功,返回 1 。
如果哈希表中域 field 已经存在且旧值已被新值覆盖,返回 0 。
命名空间:
HslCommunication.Enthernet.Redis
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public OperateResult<int> WriteHashKey(
string key,
string field,
string value
)
Public Function WriteHashKey (
key As String,
field As String,
value As String
) As OperateResult(Of Integer)
public:
OperateResult<int>^ WriteHashKey(
String^ key,
String^ field,
String^ value
)
member WriteHashKey :
key : string *
field : string *
value : string -> OperateResult<int>
参数
- key
- 类型:SystemString
关键字 - field
- 类型:SystemString
域 - value
- 类型:SystemString
数据值
返回值
类型:
OperateResultInt32
如果 field 是哈希表中的一个新建域,并且值设置成功,返回 1 。
如果哈希表中域 field 已经存在且旧值已被新值覆盖,返回 0 。
参见