Implement getKeys procedure for georadius and georadiusbymember

commands.
This commit is contained in:
Qu Chen
2017-04-07 22:31:11 +00:00
committed by antirez
parent c782d1894b
commit 73d358f79f
3 changed files with 41 additions and 2 deletions

View File

@ -1730,6 +1730,7 @@ int *zunionInterGetKeys(struct redisCommand *cmd,robj **argv, int argc, int *num
int *evalGetKeys(struct redisCommand *cmd, robj **argv, int argc, int *numkeys);
int *sortGetKeys(struct redisCommand *cmd, robj **argv, int argc, int *numkeys);
int *migrateGetKeys(struct redisCommand *cmd, robj **argv, int argc, int *numkeys);
int *georadiusGetKeys(struct redisCommand *cmd, robj **argv, int argc, int *numkeys);
/* Cluster */
void clusterInit(void);