美文网首页
Redis-keys常用命令

Redis-keys常用命令

作者: Eve0 | 来源:发表于2017-08-17 22:22 被阅读0次

  • keys * #查询所有的key
  • keys a*#查询所有以a开头的key
  • del a b#删除key=a,key=b的元素
  • exists seta#seta元素是否存在
  • rename num3 numhello#重命名num3为numhello
  • expire numhello 3000#设置过期时间(单位:秒)
  • ttl numhello#查看key=numhello距离过期时间还剩多少秒
  • type numhello#查找类型:string,hash,list,set,zset

相关文章

网友评论

      本文标题:Redis-keys常用命令

      本文链接:https://www.haomeiwen.com/subject/ohtorxtx.html