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-08 08:25:23 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:41:53 +0300
commitc89b3a651fa7674fc591342bc737e44d3745ba69 (patch)
tree9114134047649279ca36174bfbd0ac625200fb97 /redis_commands.h
parent711950df9dc4a424bb0b9d2ce4dc09c8ea75573d (diff)
ZINCRBY
Implemented ZINCRBY command
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 67d3b63a..ba58cdf5 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -116,6 +116,9 @@ int redis_hsetnx_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
int redis_srandmember_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
char **cmd, int *cmd_len, short *slot, void **ctx,
short *have_count);
+
+int redis_zincrby_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
+ char **cmd, int *cmd_len, short *slot, void **ctx);
#endif
/* vim: set tabstop=4 softtabstops=4 noexpandtab shiftwidth=4: */