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
A typical transaction looks like:
WATCH foo GET foo MULTI SET foo bar EXEC
(five round trips if executed separately)
But it would be more efficient to be able to pipeline those commands like:
WATCH foo\r\nGET foo\r\n
and then
MULTI\r\nSET foo bar\r\nEXEC
resulting in just two round trips. The protocol supports this, but I could not find any support in Jedis for this. Is it possible to add?
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Pipelined transaction
A typical transaction looks like:
(five round trips if executed separately)
But it would be more efficient to be able to pipeline those commands like:
WATCH foo\r\nGET foo\r\n
and then
MULTI\r\nSET foo bar\r\nEXEC
resulting in just two round trips. The protocol supports this, but I could not find any support in Jedis for this. Is it possible to add?
Thanks
The text was updated successfully, but these errors were encountered: