Like RedisModule_DictReplaceC() but takes the key as a RedisModuleString. */
| 6703 | |
| 6704 | /* Like RedisModule_DictReplaceC() but takes the key as a RedisModuleString. */ |
| 6705 | int RM_DictReplace(RedisModuleDict *d, RedisModuleString *key, void *ptr) { |
| 6706 | return RM_DictReplaceC(d,key->ptr,sdslen(key->ptr),ptr); |
| 6707 | } |
| 6708 | |
| 6709 | /* Return the value stored at the specified key. The function returns NULL |
| 6710 | * both in the case the key does not exist, or if you actually stored |
nothing calls this directly
no test coverage detected