摘要:
Centos7.6安装redis6.0.1 redis最新版下载地址 安装redis 报错1:/bin/sh: cc: command not found 报错2:server.c:xxxx:xx: error: ‘xxxxxxxx’ has no member named ‘xxxxx’ 其他命令 阅读全文
摘要:
# 查看所有的key 127.0.0.1:6379> keys * # 判断一个key是否存在 exists name # 将当前key移动到其他库 move name 1 # expire 给这个key设置过期时间 127.0.0.1:6379> set key value OK 127.0.0. 阅读全文