CURLMcode curl_multi_setopt(CURLM * multi_handle, CURLMoption option, param);
By setting this option, you can prevent the cache size from growing beyond the limit set by you.
When the cache is full, curl closes the oldest one in the cache to prevent the number of open connections from increasing.
This option is for the multi handle's use only, when using the easy interface you should instead use the CURLOPT_MAXCONNECTS option.
(Added in 7.16.3)