摘要:
一、redis的Sentinel redis的sentinel系统用于管理多个redis服务器,该系统主要执行三个任务 1:监控 2:提醒 3:自动故障转移 二、配置sentinel 修改sentinel.conf文件 sentinel monitor mymaster 192.168.1.170 阅读全文
摘要:
一、Redis的Replication 优点:读写分离 下面的列表清楚的解释了Redis Replication的特点和优势。 1). 同一个Master可以同步多个Slaves。 2). Slave同样可以接受其它Slaves的连接和同步请求,这样可以有效的分载Master的同步压力。因此我们可以 阅读全文