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
SO_REUSEPORT, actix is not using it by default, and it could give a serious boost in http performance. other gateways/proxies (nginx, envoy) are using it because it allows them to have more concurrent connections.
we can enable it in actix, but it requires to create a custom TcpListener
suggested by @dotansimha
SO_REUSEPORT
, actix is not using it by default, and it could give a serious boost in http performance. other gateways/proxies (nginx, envoy) are using it because it allows them to have more concurrent connections.we can enable it in actix, but it requires to create a custom
TcpListener
https://lwn.net/Articles/542629/
The text was updated successfully, but these errors were encountered: