Does anyone know how to send a working and non-blocking async request using guzzlephp?
There seems to be a support for this but it does not seem to be implemented
<?php
$this->guzzle->requestAsync('post', 'http://', ['synchronous' => false])->wait();
?>
Implemented in a sense that it does not wait for the response.
There is also a problem with php-ga-measurement-protocol
$analytics->setAsyncRequest(true)->sendPageview();