(error) LOADING Redis is loading the dataset in memory

redis读取/重启之后读取报错:(error) LOADING Redis is loading the dataset in memory

1.redis将之持久化的数据重新写入,等待数据写入完成以后即可正常访问

2.修改配置文件 vi redis.conf

  maxmemory 5GB
  maxmemory-policy allkeys-lru
  appendonly no

  重启redis,./redis_multi rewrite all    --释放redis存储

原文地址:https://www.cnblogs.com/qinxu/p/10082470.html