Tagged Questions
0
votes
1answer
176 views
Why is there a delay in script execution when calling many php scripts simultaneoulsy using multi_curl?
I have a script that calls around 40 individual php scripts (located on the same server) simultaneously. I notice that there is a delay in the start of each individual php script of up to 5 seconds. ...
0
votes
2answers
417 views
How to NOT return data from curl-multi and reduce CPU usage?
I have a script in php that uses multi curl.
A general multicurl request consists of 50 individual curl handles. It takes some time for each request to return, so my script should just wait until ...
0
votes
1answer
294 views
Why is my CPU high when using many CURL requests which are waiting for response?
I have a large php script that uses both curl and multi- curl requests to my own server and other servers. Besides that it does a number of database requests and other operations on my own server.
...
1
vote
2answers
456 views
PHP curl_multi_getcontent partial body received
I'm struggling on this problem.
The body I am fetching is not a big one, 3100 chars. Apache logs on the server says the content length was 3100. However, the string returned by curl_multi_getcontent ...