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

@@ -838,4 +838,9 @@ public class Jedis {
client.linsert(key, where, pivot, value);
return client.getIntegerReply();
}
public String debug(DebugParams params) {
client.debug(params);
return client.getStatusCodeReply();
}
}