I am using PHP to build a web crawler to crawl millions of URLs, what is better for me in terms of performance? file_get_contents or CURL?
Thanks.
|
I am using PHP to build a web crawler to crawl millions of URLs, what is better for me in terms of performance? Thanks. |
||||
|
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
I just did some quick benchmarking on this. Fetching google.com using file_get_contents took (in seconds): 2.31319094 CURL took: 0.68719101 This was using the benchmark class from http://davidwalsh.name/php-timer-benchmark Update This benchmark was done in February 2009. I reported the numbers I was given when I did the benchmark. Since then, other users have reported that they get different numbers when benchmarking this -- which is not surprising given the number of years that have passed since then. For example, Alix Axel's answer (which was posted over a year after mine) indicates that my benchmark was outdated as of May 2010. I will concede that things have changed in the 3+ years since I did this but I do not appreciate the accusations or insinuations that my benchmark was inaccurate, incorrect or wrong at the time it was posted. Thanks. |
|||||||||||||||||||||
|
|
I found @Norse benchmark extremely hard to believe since in my experience
I've tried to implement both methods to perform in the most similar way, I've even used the slow error suppressor operator (
Tested under Windows 7 / Apache 2 / PHP 5.3.1. |
|||||||||||||||||||||
|
|
Look into the curl_multi_* functions in PHP, which can fetch several URLs in parallel. |
|||
|
|
|
Norse's quick benchmark indicates cURL is going to be the better option. And cURL has a lot more options for handing server headers, redirects, authentication, cookies and such, so it'll be much more flexible if you need to expand the functionality of your code in the future. But, really, don't use PHP. Try Nutch - it probably already does everything you need. |
||||
|
We actually had issues here with FGC, and I decided to take the benchmark above, and modify it slightly to generate a nice report... Note that I am not doing error suppression on the output of FGC, contrairly to what was done in the version before. Here is the output, running as is, and then through Valgrind:
So not only does FGC seems to be slower, but it also seems to be more of a memory hog... so I suppose this is something to keep in mind when you actually want to optimize your code. |
|||||||||
|
|
Curl is definitely the best option here, not only is it quicker but it handles problems much better. You can get conditions where file_get_contents will give an error, rather than throwing a catchable exception. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.