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

Add channel handler for server side pipelining. #62

Merged
merged 2 commits into from Mar 13, 2018

Commits on Mar 13, 2018

  1. Add channel handler for server side pipelining.

    Motivation:
    
    HTTP pipelining can be tricky to handle properly on the server side.
    In particular, it's very easy to write out of order or inconsistently
    mutate state. Users often need help to handle this appropriately.
    
    Modifications:
    
    Added a HTTPServerPipelineHandler that only lets one request through
    at a time.
    
    Result:
    
    Better servers that are more able to handle HTTP pipelining
    Lukasa committed Mar 13, 2018
    Copy the full SHA
    8891819 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    a072333 View commit details
    Browse the repository at this point in the history