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-10 01:15:12 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:43:05 +0300
commit98a16f681b1e87615089ec4645cb3780a3e78d98 (patch)
tree8ee38e43614c0364884eb169df7fd3ba050913bb /redis_cluster.h
parentb74a27e10158c5a1ae3f20fc9a83b522c74820cc (diff)
ZUNIONSTORE/ZINTERSTORE
Implemented ZUNIONSTORE and ZINTERSTORE in a generic way that works for both cluster and Redis proper.
Diffstat (limited to 'redis_cluster.h')
-rw-r--r--redis_cluster.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index aa2f9a6a..4c84451f 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -143,5 +143,7 @@ PHP_METHOD(RedisCluster, srandmember);
PHP_METHOD(RedisCluster, zrange);
PHP_METHOD(RedisCluster, zrevrange);
PHP_METHOD(RedisCluster, zrangebyscore);
+PHP_METHOD(RedisCluster, zunionstore);
+PHP_METHOD(RedisCluster, zinterstore);
PHP_METHOD(RedisCluster, sort);
#endif