Allow curl handle in CurlHttpClient
to be kept alive
#331
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Thank you so much for this amazing library!
Improvement Proposal
The
CurlHttpClient
currently produces an excessive number ofconnect()
syscalls, as everymakeRequest
creates a new TCP connection. This inefficiency becomes particularly evident withTgLongPoll
, which continuously callsgetUpdates
in an endless loop, creating a relentless cycle ofconnect()
andclose()
operations.A more sensible approach is to reuse HTTP connections by keeping them alive across multiple requests. I suggest modifying the implementation to allow the curl handle to persist until the
CurlHttpClient
object is destroyed.For thread safety, we can maintain a
std::unordered_map<std::thread::id, CURL*> curlHandles
within theCurlHttpClient
class, ensuring each thread gets its own handle.After all, treating connections like disposable napkins doesn't exactly scream efficiency.
Before this change
So many socket
connect()
andclose()
calls:After this change
Connect once, use it as long as possible: