0
私はGuzzle Asyncプールを使用していますが、プールを使用して返品を取得する方法については、ドキュメントに記載されていないようです。ドキュメントを1としてGuzz get pool on result
:
$client = new Client();
$requests = function ($total) use ($client) {
$uri = 'http://localhost/';
for ($i = 0; $i < $total; $i++) {
yield function() use ($client, $uri) {
return $client->requestAsync($uri);
};
}
};
$pool = new Pool($client, $requests(100));
がどのように私はすべての返信を消費する$pool
を使用することができますか?