[Redis]QForkMasterInit错误的解决…

今天在使用Redis的时候出现以下错误:

QForkMasterInit: system error caught. error code=0x000005af, message=VirtualAllocEx failed.

网上查了一次,在国外一篇文章看到了解决方法:
http://www.tuicool.com/articles/m6jmI3

主要原因是磁盘吃紧。
具体解决方法是:

1、redis的conf文件设置参数maxheap和maxmemory。

maxmemory 120MB 
maxheap 180MB

maxmemory和maxheap根据自己的电脑配置而定,通常情况下:
maxheap  = 1.5 * maxmemory

2、创建快捷方式并指定配置文件运行

[Redis]QForkMasterInit错误的解决方案

你可能感兴趣的:(数据库编程)