-
Notifications
You must be signed in to change notification settings - Fork 126
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
perf(udp): multi-message receive on apple #2302
base: main
Are you sure you want to change the base?
Conversation
Failed Interop TestsQUIC Interop Runner, client vs. server, differences relative to bb45c74. neqo-latest as client
neqo-latest as server
All resultsSucceeded Interop TestsQUIC Interop Runner, client vs. server neqo-latest as client
neqo-latest as server
Unsupported Interop TestsQUIC Interop Runner, client vs. server neqo-latest as client
neqo-latest as server
|
target_os = "tvos", | ||
target_os = "visionos" | ||
))] | ||
const BATCH_SIZE: usize = 32; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs some commentary about why there is a split and what the benefits of the additional allocation are. 2MB is fine, but knowing why is important.
Do multi-message receive via quinn-rs/quinn#1993 on apple platforms.
Work in progress!
Early benchmarks show ~11% performance improvement in the Download benchmark.
Fixes #2279.