From b02e73ca084dfd113c9236f34d1952988a51b0cf Mon Sep 17 00:00:00 2001 From: Johno Crawford Date: Wed, 3 May 2017 16:39:19 +0200 Subject: [PATCH] Correct maxmemory setting. maxheap works for Windows but fails for OSX, maxmemory works for both. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9587d293..53099797 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ RedisServer redisServer = RedisServer.builder() .slaveOf("locahost", 6378) .setting("daemonize no") .setting("appendonly no") - .setting("maxheap 128M") + .setting("maxmemory 128M") .build(); ```