implemented bitcount and bitop commands for Redis 2.6
This commit is contained in:
@@ -190,4 +190,11 @@ public interface JedisCommands {
|
||||
Long lpushx(String key, String string);
|
||||
|
||||
Long rpushx(String key, String string);
|
||||
|
||||
Long bitcount(final String key);
|
||||
|
||||
Long bitcount(final String key, long start, long end);
|
||||
|
||||
Long bitop(BitOP op, final String destKey, String... srcKeys);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user