add bgrewriteaof

This commit is contained in:
Jonathan Leibiusky
2010-12-20 10:36:43 -03:00
parent ff0b43aded
commit 15c0e242d7
6 changed files with 119 additions and 99 deletions

View File

@@ -2876,4 +2876,9 @@ public class BinaryJedis implements BinaryJedisCommands {
public Client getClient() {
return client;
}
public String bgrewriteof() {
client.bgrewriteaof();
return client.getStatusCodeReply();
}
}