Object commands are supported

This commit is contained in:
ivowiblo
2012-04-19 00:32:23 -04:00
parent be163acd52
commit d102ccf1b9
9 changed files with 136 additions and 3 deletions

View File

@@ -154,4 +154,10 @@ public interface BinaryJedisCommands {
Long zremrangeByScore(byte[] key, double start, double end);
Long linsert(byte[] key, LIST_POSITION where, byte[] pivot, byte[] value);
Long objectRefcount(byte[] key);
Long objectIdletime(byte[] key);
byte[] objectEncoding(byte[] key);
}