is refer to multiple synchronous curl transfers
Questions tagged [curl-multi]
197 questions
-1
votes
1 answer
Fetching data with curl_multi_exec excessive memory usage
Fetching data with curl_multi_exec causes huge memory usage. I tried debugging this and this is where the memory usage starts rising.
do {
$mrc = curl_multi_exec($mh, $active);
var_dump("Curl exec ".memory_get_usage());
} while ($mrc ==…

Mayumi
- 19
- 4
-2
votes
1 answer
How to write a bot that does not consume much RAM?
I have a web bot and It consumes my memory so much, after a time, memory usage hits to 50%, and the process gets killed; I have no idea why memory usage is increasing like that, I did not include "para.php" which is a library for parallel curl…