BinaryJedis is born, Jedis inherits from it

This commit is contained in:
Yaourt
2010-11-04 14:49:23 +01:00
parent ef1cbfafc9
commit 37a3915298
3 changed files with 2984 additions and 555 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -48,9 +48,9 @@ public interface BinaryJedisCommands {
Integer hsetnx(byte[] key, byte[] field, byte[] value);
String hmset(byte[] key, Map<String, String> hash);
String hmset(byte[] key, Map<byte[], byte[]> hash);
List<byte[]> hmget(byte[] key, String... fields);
List<byte[]> hmget(byte[] key, byte[]... fields);
Integer hincrBy(byte[] key, byte[] field, int value);

File diff suppressed because it is too large Load Diff