问答详情
源自:7-1 10-Redis的Keys的通用操作

redis key  命令

keys *  /key my?                  --查看所有的key del key1 key2 key3       --删除key exists my1                 --key是否存在 rename company newcompany   --key重命名 expire newcompany 1000 --设置过期时间 ttl newcompany      --查看剩余超时时间 type newcompany   -- 查看类型

提问者:慕运维8409212 2017-08-26 16:20

个回答

  • small_bird_liu
    2017-08-26 22:06:43

    good