1.select 选择对应db
2.flushdb 清除该db所有数据
3.flushall 清除所有数据库数据
4.set 存数据
5.get 取数据
6.使用 info Keyspace 查看存储数据的相关信息
7.keys * 查看所有的 key
8.info 查看详细信息
9. 报错redis.exceptions.ResponseError: MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about the error.
解决方案:config set stop-writes-on-bgsave-error no , 关闭配置项stop-writes-on-bgsave-error解决该问题。
10.Can’t handle RDB format version 7
Fatal error loading the DB: Invalid argument. Exiting.
解决方案 :删除 dump.rdb文件,再启动 redis-server。
Redis相关笔记
最新推荐文章于 2023-11-01 16:14:19 发布