Open jjz921024 opened 3 days ago
The problem/use-case that the feature addresses
I want to implement a module that exec read-only commands on the replica node. such as:
RedisModuleCallReply *reply = RedisModule_Call(ctx, "TYPE", "s", key);
But, the return value reply is always NULL.
reply
Can you try the RedisModule_Call(ctx, "TYPE", "c", key); ? I try this way works (BTW, i just set key as 1000, I am not sure how your key type)
The problem/use-case that the feature addresses
I want to implement a module that exec read-only commands on the replica node. such as:
But, the return value
reply
is always NULL.