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:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2021-03-21 00:21:18 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2021-03-21 00:29:08 +0300
commitd5cf52cb8ad38718894052038d8e32dc53f4d5b5 (patch)
tree3f175c84dc32b52b8d2b7582228fecddffd111d9 /php_redis.h
parent747d3245721f4d7eb0a26dd0baaa551b74751ce2 (diff)
[WIP] Issue #1894
Add Redis::zinter and Redis::zunion commands
Diffstat (limited to 'php_redis.h')
-rw-r--r--php_redis.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/php_redis.h b/php_redis.h
index 975b8ab5..6b7b3be4 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -146,7 +146,9 @@ PHP_METHOD(Redis, zRevRank);
PHP_METHOD(Redis, zScore);
PHP_METHOD(Redis, zdiff);
PHP_METHOD(Redis, zdiffstore);
+PHP_METHOD(Redis, zinter);
PHP_METHOD(Redis, zinterstore);
+PHP_METHOD(Redis, zunion);
PHP_METHOD(Redis, zunionstore);
PHP_METHOD(Redis, eval);