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