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 20:53:28 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:43:40 +0300
commit5c326bf4efa8ee6098620b80d5fd600888960b6e (patch)
treeaac3939cd7e88b1358838cbe1cb88c482cf390d8 /redis_cluster.h
parent955604cbd6a1aada0c7b2691b8dc961bf5ba16ed (diff)
Implemented set aggregation methods for Redis and Cluster
Implemented the various set aggregation functions and store variations for both Redis and RedisCluster in a generic way. * SUNION * SUNIONSTORE * SINTER * SINTERSTORE * SDIFF * SDIFFSTORE
Diffstat (limited to 'redis_cluster.h')
-rw-r--r--redis_cluster.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/redis_cluster.h b/redis_cluster.h
index fe7f553f..af3d4108 100644
--- a/redis_cluster.h
+++ b/redis_cluster.h
@@ -93,6 +93,12 @@ PHP_METHOD(RedisCluster, smembers);
PHP_METHOD(RedisCluster, sismember);
PHP_METHOD(RedisCluster, sadd);
PHP_METHOD(RedisCluster, srem);
+PHP_METHOD(RedisCluster, sunion);
+PHP_METHOD(RedisCluster, sunionstore);
+PHP_METHOD(RedisCluster, sinter);
+PHP_METHOD(RedisCluster, sinterstore);
+PHP_METHOD(RedisCluster, sdiff);
+PHP_METHOD(RedisCluster, sdiffstore);
PHP_METHOD(RedisCluster, strlen);
PHP_METHOD(RedisCluster, ttl);
PHP_METHOD(RedisCluster, pttl);