Skip to content
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

Save slicing HTTP 2 headers & data #13783

Open
wants to merge 2 commits into
base: 4.1
Choose a base branch
from

Commits on Feb 5, 2024

  1. Save slicing HTTP 2 headers & data

    Motivation:
    
    DefaultHttp2FrameWriter's always create aggregate promises and slices out of
    headers and data: both could be saved while reducing the amount of pipeline traversals
    in case the additional cost of creating a sliced buffer surpass the data to be written.
    
    Modifications:
    
    Small header and data could be copied directly in a single buffer, without any need to
    create aggregate promises.
    
    Result:
    
    Faster small data's writes
    franz1981 committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    1db28a0 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Configuration menu
    Copy the full SHA
    33f5c56 View commit details
    Browse the repository at this point in the history