BLPOP [ ...] */
| 986 | |
| 987 | /* BLPOP <key> [<key> ...] <timeout> */ |
| 988 | void brpopCommand(client *c) { |
| 989 | blockingPopGenericCommand(c,LIST_TAIL); |
| 990 | } |
| 991 | |
| 992 | void blmoveGenericCommand(client *c, int wherefrom, int whereto, mstime_t timeout) { |
| 993 | robj *key = lookupKeyWrite(c->db, c->argv[1]); |
nothing calls this directly
no test coverage detected