-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
[HTTP/3] Optimize reading from Quic stream #58445
Comments
Tagging subscribers to this area: @dotnet/ncl Issue DetailsReads don't leverage buffering and most of the time they would read 1 (or less) data frame at a time, even if they are available in transport. Reads can be optimized in a way chunked encoding for HTTP/1.1 is implemented, see algorithm below From #58296 (comment)
From #58296 (comment)
|
Triage: Perf optimization, not important for 6.0. |
Is there anything more to be done as part of this issue? We do have read-side buffering on QuicStream. |
Closing as fixed by read-side buffering on QuicStream. |
Reads don't leverage buffering and most of the time they would read 1 (or less) data frame at a time, even if they are available in transport. Reads can be optimized in a way chunked encoding for HTTP/1.1 is implemented, see algorithm below
From #58296 (comment)
From #58296 (comment)
The text was updated successfully, but these errors were encountered: