[原创]个人理解,请批判接受,有误请指正。转载请注明出处: https://heyfl.gitee.io/redis/Redis-Sentinel-Summary.html
1.Redis主从架构
- 主节点负责写入操作
- 从节点可以提供读取操作(可配置,有延迟,高一致性的场景下需要注意)
[原创]个人理解,请批判接受,有误请指正。转载请注明出处: https://heyfl.gitee.io/redis/Redis-Sentinel-Summary.html
[原创]个人理解,请批判接受,有误请指正。转载请注明出处: https://heyfl.gitee.io/redis/Redis-Partitioning.html
Redis集群--sentinel 与 cluster的区别
[原创]个人理解,请批判接受,有误请指正。转载请注明出处: https://heyfl.gitee.io/redis/Different-Between-Sentinel-And-Cluster.html
PS. sentinel本身支持集群
遇到有疑惑的可参考这个链接
注意
: 关闭redis集群不能直接kill掉进程,或者关机,我们要通过命令redis-cli -p 7001 shutdown进行关闭,这样在关闭之前,数据才能够进行保存
详:略
详:
1 | daemonize yes //redis后台运行 |