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.
| ||||
|
feedback
|
|
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 | |||||||||||||||||||
feedback
|
|
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. | |||||||||||||||||||
feedback
|
|
Look into the curl_multi_* functions in PHP, which can fetch several URLs in parallel. | |||
|
feedback
|
|
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. | ||||
|
feedback
|
|
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. | |||||
feedback
|
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.