BZPOPMAX key [key ...] timeout
| 3982 | |
| 3983 | // BZPOPMAX key [key ...] timeout |
| 3984 | void bzpopmaxCommand(client *c) { |
| 3985 | blockingGenericZpopCommand(c,ZSET_MAX); |
| 3986 | } |
| 3987 | |
| 3988 | static void zarndmemberReplyWithZiplist(client *c, unsigned int count, ziplistEntry *keys, ziplistEntry *vals) { |
| 3989 | for (unsigned long i = 0; i < count; i++) { |
nothing calls this directly
no test coverage detected