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_commands.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_commands.h')
-rw-r--r--redis_commands.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/redis_commands.h b/redis_commands.h
index 3205a732..e23faf67 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -61,6 +61,9 @@ int redis_zrangebyscore_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
char *kw, char **cmd, int *cmd_len, int *withscores, short *slot,
void **ctx);
+int redis_zinter_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
+ char *kw, char **cmd, int *cmd_len, short *slot, void **ctx);
+
/* Commands which need a unique construction mechanism. This is either because
* they don't share a signature with any other command, or because there is
* specific processing we do (e.g. verifying subarguments) that make them