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
In the current implementation each connection runs in its own goroutine. All the requests send using that connection get handled sequentially by that same routine. It might be possible to handle each request in its own goroutine and thus speeding up the server if resources are available.
The text was updated successfully, but these errors were encountered:
kevba
changed the title
Starta Goroutine for each request
Start a Goroutine for each request
Aug 17, 2017
In the current implementation each connection runs in its own goroutine. All the requests send using that connection get handled sequentially by that same routine. It might be possible to handle each request in its own goroutine and thus speeding up the server if resources are available.
The text was updated successfully, but these errors were encountered: