Reply with an empty string. * * The function always returns REDISMODULE_OK. */
| 1664 | * |
| 1665 | * The function always returns REDISMODULE_OK. */ |
| 1666 | int RM_ReplyWithEmptyString(RedisModuleCtx *ctx) { |
| 1667 | client *c = moduleGetReplyClient(ctx); |
| 1668 | if (c == NULL) return REDISMODULE_OK; |
| 1669 | addReply(c,shared.emptybulk); |
| 1670 | return REDISMODULE_OK; |
| 1671 | } |
| 1672 | |
| 1673 | /* Reply with a binary safe string, which should not be escaped or filtered |
| 1674 | * taking in input a C buffer pointer and length. |
nothing calls this directly
no test coverage detected