php multi curl init | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

php multi curl init

can some one explain me how to send multiple requests with curl? i need high speed of processing

17th Jan 2017, 1:57 PM
king coder
king coder - avatar
3 Answers
0
are you requesting the same data or blocks of data from the same set?
17th Jan 2017, 8:52 PM
Louis Milotte
Louis Milotte - avatar
0
request to a url with difference post data i want a high speed of sending data
17th Jan 2017, 8:56 PM
king coder
king coder - avatar
0
if they come from the same dataset you should combine the request if the api allows. php processes line by line, so the speed won't increase if you break it up. you'd only break it up in php ti avoid timeout
17th Jan 2017, 9:27 PM
Louis Milotte
Louis Milotte - avatar