I make many curl requests to the same server in a loop.
I want to continue to use the same curl handle as it is much faster than closing it with curl_close() and getting new with curl_init() , because it keeps the underlying connection open. Reuse of the handle is definitely faster.
If I call curl_reset() after each request, will this reset the connection and therefore slow down?
source share