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>2017-04-23 07:45:08 +0300
committermichael-grunder <michael.grunder@gmail.com>2017-04-23 07:45:08 +0300
commit9aa3dbfc3d28d34b17c22bb733068fad1d5fa85d (patch)
treef669615316b7451a5d63bc0314a59638039811cc /redis_commands.h
parentb08722338c80dd71436ce619947b68c12a9d835f (diff)
Allow MIGRATE to accept multiple keys
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 bc5aa9d9..e1cd7fcf 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -251,6 +251,9 @@ int redis_georadius_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
int redis_georadiusbymember_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
char **cmd, int *cmd_len, short *slot, void **ctx);
+int redis_migrate_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
+ char **cmd, int *cmd_len, short *slot, void **ctx);
+
/* Commands that don't communicate with Redis at all (such as getOption,
* setOption, _prefix, _serialize, etc). These can be handled in one place
* with the method of grabbing our RedisSock* object in different ways