diff --git a/README.md b/README.md index 9587d293..b106b510 100644 --- a/README.md +++ b/README.md @@ -76,10 +76,11 @@ Or even create simple redis.conf file from scratch: RedisServer redisServer = RedisServer.builder() .redisExecProvider(customRedisProvider) .port(6379) + .setting("bind 127.0.0.1") // good for local development on Windows to prevent security popups .slaveOf("locahost", 6378) .setting("daemonize no") .setting("appendonly no") - .setting("maxheap 128M") + .setting("maxmemory 128M") .build(); ```