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