Open
Description
https://github.com/typelevel/keypool
Easy handles are meant and designed to be reused. When you have done a single transfer with the easy handle, you can immediately use it again for your next transfer.
https://everything.curl.dev/libcurl/easyhandle#reuse
After the transfer has been made, you can set new options and make another transfer, or if you are done, cleanup the session by calling curl_easy_cleanup. If you want persistent connections, you do not cleanup immediately, but instead run ahead and perform other transfers using the same easy handle.
https://curl.se/libcurl/c/libcurl-easy.html
Sounds like a mistake that we're not reusing these 😅