hincr, incr and decr long support

This commit is contained in:
Jonathan Leibiusky
2010-12-10 17:21:22 -03:00
parent ff8ac4c9db
commit afd34c8af6
11 changed files with 33 additions and 33 deletions

View File

@@ -31,11 +31,11 @@ public interface BinaryJedisCommands {
String setex(byte[] key, int seconds, byte[] value);
Long decrBy(byte[] key, int integer);
Long decrBy(byte[] key, long integer);
Long decr(byte[] key);
Long incrBy(byte[] key, int integer);
Long incrBy(byte[] key, long integer);
Long incr(byte[] key);
@@ -53,7 +53,7 @@ public interface BinaryJedisCommands {
List<byte[]> hmget(byte[] key, byte[]... fields);
Long hincrBy(byte[] key, byte[] field, int value);
Long hincrBy(byte[] key, byte[] field, long value);
Boolean hexists(byte[] key, byte[] field);