Merge branch 'master' into support-sorted-set-with-lex
Conflicts: src/main/java/redis/clients/jedis/BinaryShardedJedis.java src/main/java/redis/clients/jedis/Jedis.java src/main/java/redis/clients/jedis/Protocol.java src/test/java/redis/clients/jedis/tests/commands/SortedSetCommandsTest.java
This commit is contained in:
@@ -47,6 +47,8 @@ public interface BinaryJedisCommands {
|
||||
|
||||
Long incrBy(byte[] key, long integer);
|
||||
|
||||
Double incrByFloat(byte[] key, double value);
|
||||
|
||||
Long incr(byte[] key);
|
||||
|
||||
Long append(byte[] key, byte[] value);
|
||||
@@ -65,6 +67,8 @@ public interface BinaryJedisCommands {
|
||||
|
||||
Long hincrBy(byte[] key, byte[] field, long value);
|
||||
|
||||
Double hincrByFloat(byte[] key, byte[] field, double value);
|
||||
|
||||
Boolean hexists(byte[] key, byte[] field);
|
||||
|
||||
Long hdel(byte[] key, byte[]... field);
|
||||
@@ -111,6 +115,8 @@ public interface BinaryJedisCommands {
|
||||
|
||||
byte[] srandmember(byte[] key);
|
||||
|
||||
List<byte[]> srandmember(final byte[] key, final int count);
|
||||
|
||||
Long strlen(byte[] key);
|
||||
|
||||
Long zadd(byte[] key, double score, byte[] member);
|
||||
@@ -220,4 +226,8 @@ public interface BinaryJedisCommands {
|
||||
Long bitcount(final byte[] key);
|
||||
|
||||
Long bitcount(final byte[] key, long start, long end);
|
||||
|
||||
Long pfadd(final byte[] key, final byte[]... elements);
|
||||
|
||||
long pfcount(final byte[] key);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user