| 4320 | /* ====================== Commands lookup and execution ===================== */ |
| 4321 | |
| 4322 | struct redisCommand *lookupCommand(sds name) { |
| 4323 | return (struct redisCommand*)dictFetchValue(g_pserver->commands, name); |
| 4324 | } |
| 4325 | |
| 4326 | struct redisCommand *lookupCommandByCString(const char *s) { |
| 4327 | struct redisCommand *cmd; |
no test coverage detected