HSET
语法
HSET key field value [field value ...]
- 从以下位置开始可用:
- 2.0.0
- 时间复杂度:
- O(1) 表示添加的每个字段/值对,因此 O(N) 在调用具有多个字段/值对的命令时添加 N 个字段/值对。
- ACL 类别:
-
@write
,@hash
,@fast
,
将指定的字段设置为存储在key
.
此命令将覆盖哈希中存在的指定字段的值。
如果key
不存在,则会创建一个包含哈希值的新密钥。
例子
Give these commands a try in the interactive console:
RESP2/RESP3 Reply
Integer reply: the number of fields that were added.
History
- Starting with Redis version 4.0.0: Accepts multiple
field
and value
arguments.