kstyrc / embedded-redis

Redis embedded server for Java integration testing
840 stars 368 forks source link

max heap setting #69

Closed SaltOfTheFlame closed 8 years ago

SaltOfTheFlame commented 8 years ago

will you be so kind to make it available to set the maxheap arg ?

ghost commented 8 years ago

you can use something like this.

RedisServer.builder() .port(port) .setting("maxheap 128M") .setting("daemonize no") .setting("appendonly no") .build();

SaltOfTheFlame commented 8 years ago

thnx