添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
留胡子的毛豆  ·  官图来啦 | ...·  2 月前    · 
严肃的跑步鞋  ·  Java代码实现 ...·  4 月前    · 
眼睛小的野马  ·  OR新媒体 | ...·  4 月前    · 

@harry
you can set expiry to any Redis data types keys. below is example for Hashes

redis> HSET myhash field1 "helloworld"
(integer) 0
redis> EXPIRE myhash 60
(integer) 1
redis> TTL myhash
(integer) 51
redis> HGET myhash field1
"helloworld"
redis> TTL myhash
(integer) 10
redis> TTL myhash
(integer) -2
redis> HGET myhash field1
(nil)

Hope this helps.