reactphp-curl icon indicating copy to clipboard operation
reactphp-curl copied to clipboard

Results 3 reactphp-curl issues
Sort by recently updated
recently updated
newest added

Curl.php lines 94 and following should be replaced with: if (!isset($this->loop_timer)) { $this->loop_timer = $this->loop->addPeriodicTimer($this->timeout, function() { $this->run(); if (!($this->client->run() || $this->client->has())) { **$this->loop->cancelTimer($this->loop_timer);** $this->loop_timer = null; } }); }

Changing the timer value will allow the client to achieve a higher download speed, and has resulted in faster downloads during my tests. You can also change this in the...