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

@@ -612,4 +612,9 @@ public class Jedis {
client.bgsave();
return client.getStatusCodeReply();
}
public String bgrewriteaof() {
client.bgrewriteaof();
return client.getStatusCodeReply();
}
}