Slowlog commands. The unit test is failing.
This commit is contained in:
@@ -3006,4 +3006,23 @@ public class BinaryJedis implements BinaryJedisCommands {
|
||||
public Long getDB() {
|
||||
return client.getDB();
|
||||
}
|
||||
|
||||
public void slowlogReset() {
|
||||
client.slowlogReset();
|
||||
}
|
||||
|
||||
public long slowlogLen() {
|
||||
client.slowlogLen();
|
||||
return client.getIntegerReply();
|
||||
}
|
||||
|
||||
public List<byte[]> slowlogGetBinary() {
|
||||
client.slowlogGet();
|
||||
return client.getBinaryMultiBulkReply();
|
||||
}
|
||||
|
||||
public List<byte[]> slowlogGetBinary(long entries) {
|
||||
client.slowlogGet(entries);
|
||||
return client.getBinaryMultiBulkReply();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user