BZPOPMIN key [key ...] timeout
| 3977 | |
| 3978 | // BZPOPMIN key [key ...] timeout |
| 3979 | void bzpopminCommand(client *c) { |
| 3980 | blockingGenericZpopCommand(c,ZSET_MIN); |
| 3981 | } |
| 3982 | |
| 3983 | // BZPOPMAX key [key ...] timeout |
| 3984 | void bzpopmaxCommand(client *c) { |
nothing calls this directly
no test coverage detected