-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
int redisReaderGetReply(redisReader *r, void **reply) error #1263
Comments
I don't follow. What is the issue? |
My program restarts the redis connection and executes a command similar to HSCAN filekey:fileuuis 0 match trace:* count 10. The data is successfully traversed for the first time. When the program exits and restarts the second traversal, reply=NULL is returned. The problem lies in the code I mentioned above. |
|
|
int redisReaderGetReply(redisReader *r, void **reply) if (sdsrange(r->buf,r->pos,-1) < 0) {} after judging that the link is successful, execute hscan and return null
The text was updated successfully, but these errors were encountered: