Skip to content

Commit 13f15af

Browse files
committed
Use select() syscall to avoid busy waiting
Currently it consumes a lot of CPU, it's a no-brainer i think. Co-authored-by: Diego de Estrada
1 parent 6f6a690 commit 13f15af

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Transport/Curl.php

+4
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,10 @@ public function request_multiple($requests, $options) {
245245
do {
246246
$active = 0;
247247

248+
if ($active) {
249+
curl_multi_select($multihandle);
250+
}
251+
248252
do {
249253
$status = curl_multi_exec($multihandle, $active);
250254
}

0 commit comments

Comments
 (0)