Added incrByFloat and hincrByFloat commands (binary and standard) + support for pipelining and sharding
This commit is contained in:
@@ -37,6 +37,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);
|
||||
@@ -55,6 +57,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);
|
||||
|
||||
Reference in New Issue
Block a user