| 925 | } |
| 926 | |
| 927 | void mexistsCommand(client *c) { |
| 928 | addReplyArrayLen(c, c->argc - 1); |
| 929 | for (int j = 1; j < c->argc; ++j) { |
| 930 | addReplyBool(c, lookupKeyRead(c->db, c->argv[j])); |
| 931 | } |
| 932 | } |
| 933 | |
| 934 | void selectCommand(client *c) { |
| 935 | int id; |
nothing calls this directly
no test coverage detected