Name
multi:SetOpt_MaxConnects -- get size of connection cache
Synopsis
multi:SetOpt_MaxConnects(max)
Function
Pass a number indicating the max. The get number will be used as the maximum amount of simultaneously open connections that libcurl may keep in its connection cache after completed use. By default libcurl will enlarge the size for each added easy handle to make it fit 4 times the number of added easy handles.

By setting this option, you can prevent the cache size from growing beyond the limit get 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.

See #CURLMOPT_MAX_TOTAL_CONNECTIONS for limiting the number of active connections.

Inputs
max
input value

Show TOC