redis 大内存主从问题解决

redis 内存太大使用太大会导致同步陷入循环,每次rdb还没同步完成,新的同步又起,解决办法:

redis-cli  config set client-output-buffer-limit "normal 0 0 0 slave 536870912 268435456 120 pubsub 33554432 8388608 60"

 

原文地址:https://www.cnblogs.com/mikeluwen/p/8390484.html