HPTTL
语法
HPTTL key FIELDS numfields field [field ...]
- 从以下位置开始可用:
- 7.4.0
- 时间复杂度:
- O(N),其中 N 是指定字段的数量
- ACL 类别:
-
@read
,@hash
,@fast
,
喜欢HTTL
,此命令返回具有
expiration 设置,但以毫秒而不是秒为单位。
例
redis> HPTTL no-key FIELDS 3 field1 field2 field3
(nil)
redis> HSET mykey field1 "hello" field2 "world"
(integer) 2
redis> HEXPIRE mykey 300 FIELDS 2 field1 field3
1) (integer) 1
2) (integer) -2
redis> HPTTL mykey FIELDS 3 field1 field2 field3
1) (integer) 292202
2) (integer) -1
3) (integer) -2
RESP2/RESP3 回复
- 数组回复。对于每个字段:
- 整数回复:
-2
如果提供的哈希密钥中不存在此类字段,或者提供的密钥不存在。 - 整数回复:
-1
如果字段存在,但未设置关联的过期时间。 - Integer reply:TTL(以毫秒为单位)。
- 整数回复: