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 Mar 18, 2025. It is now read-only.
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: