先确认是否开启了持久化
redis有两种持久化方式:RDB 和 AOF
## 表示没有开启
appendonly no
# The name of the append only file (default: "appendonly.aof")
appendfilename "appendonly.aof"
2025/5/26大约 3 分钟
先确认是否开启了持久化
redis有两种持久化方式:RDB 和 AOF
## 表示没有开启
appendonly no
# The name of the append only file (default: "appendonly.aof")
appendfilename "appendonly.aof"
查看redis内存使用情况
redis-cli info memory
redis-cli -h host -p 端口号