Let's say I need to get content from 5 different websites, 100 pages from each. For instance:
example.com/?a=1,
example.com.com/?a=2
OR
example.com/a.txt,
example.com/b.txt
Up until now, I have been using curl_multi
, and while this is much faster than normal curl, I'm still not completely satisfied with the speed. I was wondering if there was a faster way to get pages from a single domain (connect to the domain, then grab as much as you can!).
I do not own the domain I am trying to get content from, but I will be throttling my requests.