docs
docs copied to clipboard
Issue with the "Guidelines for concurrency settings" doc
I found an issue with this document.
Title: Guidelines for concurrency settings Location: https://fly.io/docs/apps/concurrency/ Source: https://github.com/superfly/docs/blob/main/apps/concurrency.html.markerb
Describe the issue
connections are TCP connections. Multiple requests can be sent over a connection, so you need to consider how your app handles that. If you use connections for web services, then the proxy opens a new connection for each HTTP request, which is why requests is a better setting for HTTP apps.
I think it should be 'connections' is a better setting for HTTP apps.