You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2017. It is now read-only.
I'm following some discussions about HTTP/2 and a new WSGI design (see web-sig)
and one issue brought up (pretty randomly) is that async frameworks typically
don't let you limit how many incoming connections a server can have open at any
time. Thinking about load balancers it's pretty clear that this would be a
useful feature to have in the framework: it's hard to implement this in the
application, because it doesn't get control over the accept() syscall.
Original issue reported on code.google.com by [email protected] on 16 Oct 2014 at 3:55