Name
easy:SetOpt_MaxAge_Conn -- max idle time allowed for reusing a connection (V2.0)
Synopsis
easy:SetOpt_MaxAge_Conn(age)
Function
Pass the maximum time in seconds that you allow an existing connection to have been idle to be considered for reuse for this request.

The "connection cache" that holds previously used connections. When a new request is to be done, it will consider any connection that matches for reuse. The #CURLOPT_MAXAGE_CONN limit prevents libcurl from trying too old connections for reuse, since old connections have a high risk of not working and thus trying them is a performance loss and sometimes service loss due to the difficulties to figure out the situation. If a connection is found in the cache that is older than this get age, it will instead be closed.

Inputs
age
input value

Show TOC