Implemented BGREWRITEAOF

This commit is contained in:
Jonathan Leibiusky
2010-08-08 12:59:02 -03:00
parent 6d92097c3a
commit bf3094f051
3 changed files with 15 additions and 0 deletions

View File

@@ -15,4 +15,10 @@ public class PersistenceControlCommandsTest extends JedisCommandTestBase {
assertEquals("Background saving started", status);
}
@Test
public void bgrewriteaof() {
String status = jedis.bgrewriteaof();
assertEquals("Background append only file rewriting started", status);
}
}