Skip to content

Commit

Permalink
Correct maxmemory setting.
Browse files Browse the repository at this point in the history
maxheap works for Windows but fails for OSX, maxmemory works for both.
  • Loading branch information
johnou authored May 3, 2017
1 parent 05ff0cf commit b02e73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ RedisServer redisServer = RedisServer.builder()
.slaveOf("locahost", 6378)
.setting("daemonize no")
.setting("appendonly no")
.setting("maxheap 128M")
.setting("maxmemory 128M")
.build();
```

Expand Down

0 comments on commit b02e73c

Please sign in to comment.