Added DEBUG command

This commit is contained in:
Jonathan Leibiusky
2010-09-15 20:17:30 -03:00
parent 3d1546131a
commit 1312c4d4ae
4 changed files with 63 additions and 0 deletions

View File

@@ -596,4 +596,8 @@ public class Client extends Connection {
String value) {
sendCommand("LINSERT", key, where.toString(), pivot, value);
}
public void debug(DebugParams params) {
sendCommand("DEBUG", params.getCommand());
}
}