We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis EXISTS support multiple keys
As of now i see that hiredis-vip does not support the same. I get below error when i try the same.
ERROR: 4 Parse command error. Cmd type: 2, state: 10, break position: 24
From further debugging i see that in file "command.c" as following:
static int redis_arg0(struct cmd *r) { switch (r->type) { case CMD_REQ_REDIS_EXISTS: <<<<<<<
The text was updated successfully, but these errors were encountered:
HI! We have solved this issue in our fork. The PR that maybe could be reused is here: Nordix/hiredis-cluster@746714d
Sorry, something went wrong.
No branches or pull requests
Redis EXISTS support multiple keys
As of now i see that hiredis-vip does not support the same. I get below error when i try the same.
ERROR: 4 Parse command error. Cmd type: 2, state: 10, break position: 24
From further debugging i see that in file "command.c" as following:
static int
redis_arg0(struct cmd *r)
{
switch (r->type) {
case CMD_REQ_REDIS_EXISTS: <<<<<<<
The text was updated successfully, but these errors were encountered: