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
mget with big list of keys
Expected: normal execution time, like with older versions (like 2.0.7)
Instead: excecution time increased from 2s to 30+s when yii-redis updated from 2.0.7 to 2.0.13
implode called for every call of parseResponse we have a lot of executions for Multi-bulk replies
The text was updated successfully, but these errors were encountered:
Indeed, it should not be done like that, I can see it was changed in 2.0.11. Could you prepare PR fixing it?
Sorry, something went wrong.
mget()
#265
Successfully merging a pull request may close this issue.
What steps will reproduce the problem?
mget with big list of keys
What's expected?
Expected: normal execution time, like with older versions (like 2.0.7)
What do you get instead?
Instead: excecution time increased from 2s to 30+s
when yii-redis updated from 2.0.7 to 2.0.13
Additional info
implode called for every call of parseResponse
we have a lot of executions for Multi-bulk replies
The text was updated successfully, but these errors were encountered: