Open stefanak-michal opened 3 years ago
Hi.
I've two suggestion to improve speed of curl connection.
gethostbyname()
$this->host = filter_var($ip, FILTER_VALIDATE_IP) ? $host : gethostbyname($host);
Hi.
I've two suggestion to improve speed of curl connection.
gethostbyname()
if the host isn't IP. It will resolve hostname to IP and it's faster if you avoid DNS resolve every time.