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
Even given a bulk of queries, RedisConnection#WriteItem() loops them calling WriteOne(). The latter calls WriteRESP() and async_flush().
Write everything queued, flush once.
c5c7925
While more async I/O may even reduce mutex contention, this is not what our buffered streams are for.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Even given a bulk of queries, RedisConnection#WriteItem() loops them calling WriteOne().
The latter calls WriteRESP() and async_flush().
Expected behavior
Write everything queued, flush once.
Your Environment
c5c7925
Additional context
While more async I/O may even reduce mutex contention, this is not what our buffered streams are for.
The text was updated successfully, but these errors were encountered: