add config resetstat

This commit is contained in:
Jonathan Leibiusky
2010-12-20 11:21:11 -03:00
parent 3f79d80396
commit f43ca04bd9
6 changed files with 56 additions and 2 deletions

View File

@@ -632,4 +632,8 @@ public class BinaryClient extends Connection {
final int timeout) {
sendCommand(BRPOPLPUSH, source, destination, toByteArray(timeout));
}
public void configResetStat() {
sendCommand(CONFIG, Keyword.RESETSTAT.name());
}
}