Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2014-06-07 21:41:15 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:38:07 +0300
commitcc420c1810391b6a6f087e11c25c6e71c32361f6 (patch)
treeb8407ddfee5c68e7ea7165de53c2b41cccbbfa41 /redis_cluster.h
parent21f666e435509fa3783451e7b9e9719b370362a5 (diff)
BITPOS/BITCOUNT/BITOP, formatting, etc
Commit the rest of our "empty" commands semantics Implemented BITOP/BITPOS/BITCOUNT commands for both Redis and RedisCluster
Diffstat (limited to 'redis_cluster.h')
-rw-r--r--redis_cluster.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index 4fd5d5f0..a0cde9c7 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -115,6 +115,9 @@ PHP_METHOD(RedisCluster, pexpire);
PHP_METHOD(RedisCluster, pexpireat);
PHP_METHOD(RedisCluster, append);
PHP_METHOD(RedisCluster, getbit);
+PHP_METHOD(RedisCluster, bitop);
+PHP_METHOD(RedisCluster, bitpos);
+PHP_METHOD(RedisCluster, bitcount);
PHP_METHOD(RedisCluster, lget);
PHP_METHOD(RedisCluster, getrange);
PHP_METHOD(RedisCluster, ltrim);