| 3531 | /* ====================== Commands lookup and execution ===================== */ |
| 3532 | |
| 3533 | struct redisCommand *lookupCommand(sds name) { |
| 3534 | return dictFetchValue(server.commands, name); |
| 3535 | } |
| 3536 | |
| 3537 | struct redisCommand *lookupCommandByCString(const char *s) { |
| 3538 | struct redisCommand *cmd; |
no test coverage detected