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
We should review the use of client.Close() which is pretty pervasive in the code and could be causing unnecessary connection churn.
I would expect 99% of all clients to use an underlying default client much like the stdlib http, which allows it to consistently reuse connections avoiding the overhead of establishing new ones.
The text was updated successfully, but these errors were encountered:
Proposal
We should review the use of
client.Close()
which is pretty pervasive in the code and could be causing unnecessary connection churn.I would expect 99% of all clients to use an underlying default client much like the stdlib http, which allows it to consistently reuse connections avoiding the overhead of establishing new ones.
The text was updated successfully, but these errors were encountered: