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.

link|improve this question

56% accept rate
feedback

5 Answers

up vote 60 down vote accepted

I just did some quick benchmarking on this.

Fetching google.com using file_get_contents took (in seconds):

2.31319094
2.30374217
2.21512604
3.30553889
2.30124092

CURL took:

0.68719101
0.64675593
0.64326
0.81983113
0.63956594

This was using the benchmark class from http://davidwalsh.name/php-timer-benchmark

link|improve this answer
So just to open the page (no parsing, storage, etc) for 1 million urls would take about 11.5 days. (1,000,000 / (60 * 60 * 24)). Assuming ~1sec/page average. – Mike B Feb 17 '09 at 6:03
4  
file_get_contents() seems to be way to slow in your benchmark. Did it actually took 2+ seconds to request google.com ONE time? – Alix Axel Jul 25 '10 at 0:30
2  
@Mike B: I highly doubt that, check my benchmark. – Alix Axel Jul 25 '10 at 0:31
1  
@Alix Axel: Thanks for clearing that up :) – Mike B Jul 25 '10 at 1:02
1  
it should depends on dns resolution time. Does both FGC and CURL resolve domain each time a request is made? if yes, its better to send request to a specific IP. – shiplu.mokadd.im Dec 6 '11 at 13:43
feedback

I found @Norse benchmark extremely hard to believe since in my experience file_get_contents() is not 3.5 times slower (on average) than CURL, so I ran my own benchmark. Here are the results:

[1] => Array   // 1 request to google.com
(
    [FGC] =>  0.4955058 // 38.88% slower
    [CURL] => 0.3582108
)
[5] => Array   // 5 requests to google.com
(
    [FGC] =>  2.2415568 // 24.44% slower
    [CURL] => 1.7973249
)    
[10] => Array  // 10 requests to google.com
(
    [FGC] =>  4.7877922 // 29.46% slower
    [CURL] => 3.6951289
)    
[25] => Array  // 25 requests to google.com
(
    [FGC] =>  10.932404 // 10.18% slower
    [CURL] => 9.9168329
)    
[50] => Array  // 50 requests to google.com
(
    [FGC] =>  22.535982 // 24.74% slower
    [CURL] => 18.068931
)    
[100] => Array // 100 requests to google.com
(
    [FGC] =>  44.685283 // 18.57% slower
    [CURL] => 37.688820
)

I've tried to implement both methods to perform in the most similar way, I've even used the slow error suppressor operator (@) on file_get_contents() to avoid warnings being thrown since CURL also suppresses errors. As you can see file_get_contents() is at most 39% slower than CURL, not 250%+ slower like @Norse benchmark suggests. The code I've used to do the benchmark is here:

function Benchmark($function, $arguments = null, $iterations = 10000)
{
    set_time_limit(0);

    if (is_callable($function) === true)
    {
        $result = microtime(true);

        for ($i = 1; $i <= $iterations; ++$i)
        {
            call_user_func_array($function, (array) $arguments);
        }

        return round(microtime(true) - $result, 8);
    }

    return false;
}

function FGC($url, $post = null, $retries = 3)
{
    $http = array
    (
        'method' => 'GET',
    );

    if (isset($post) === true)
    {
        $http['method'] = 'POST';
        $http['header'] = 'Content-Type: application/x-www-form-urlencoded';
        $http['content'] = (is_array($post) === true) ? http_build_query($post, '', '&') : $post;
    }

    $result = false;

    while (($result === false) && (--$retries > 0))
    {
        $result = @file_get_contents($url, false, stream_context_create(array('http' => $http)));
    }

    return $result;
}

function CURL($url, $post = null, $retries = 3)
{
    $curl = curl_init($url);

    if (is_resource($curl) === true)
    {
        curl_setopt($curl, CURLOPT_FAILONERROR, true);
        curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);

        if (isset($post) === true)
        {
            curl_setopt($curl, CURLOPT_POST, true);
            curl_setopt($curl, CURLOPT_POSTFIELDS, (is_array($post) === true) ? http_build_query($post, '', '&') : $post);
        }

        $result = false;

        while (($result === false) && (--$retries > 0))
        {
            $result = curl_exec($curl);
        }

        curl_close($curl);
    }

    return $result;
}

$result = array();

$result[1]['FGC'] = Benchmark('FGC', 'http://www.google.com/', 1);
$result[1]['CURL'] = Benchmark('CURL', 'http://www.google.com/', 1);

sleep(1); // we don't want to get blacklisted by Google

$result[5]['FGC'] = Benchmark('FGC', 'http://www.google.com/', 5);
$result[5]['CURL'] = Benchmark('CURL', 'http://www.google.com/', 5);

sleep(2); // we don't want to get blacklisted by Google

$result[10]['FGC'] = Benchmark('FGC', 'http://www.google.com/', 10);
$result[10]['CURL'] = Benchmark('CURL', 'http://www.google.com/', 10);

sleep(4); // we don't want to get blacklisted by Google

$result[25]['FGC'] = Benchmark('FGC', 'http://www.google.com/', 25);
$result[25]['CURL'] = Benchmark('CURL', 'http://www.google.com/', 25);

sleep(8); // we don't want to get blacklisted by Google

$result[50]['FGC'] = Benchmark('FGC', 'http://www.google.com/', 50);
$result[50]['CURL'] = Benchmark('CURL', 'http://www.google.com/', 50);

sleep(16); // we don't want to get blacklisted by Google

$result[100]['FGC'] = Benchmark('FGC', 'http://www.google.com/', 100);
$result[100]['CURL'] = Benchmark('CURL', 'http://www.google.com/', 100);

echo '<pre>';
print_r($result);
echo '</pre>';

Tested under Windows 7 / Apache 2 / PHP 5.3.1.

link|improve this answer
4  
Benchmarking this way is testing Google, but your client… and by "Google," I mean everything between you and Google, including Google. Run the same test against localhost, and you'll notice that file_get_contents is a tiny bit slower (and sometimes faster), but not on the order of >10% like you concluded. – scoates Apr 10 '11 at 21:20
that should read "not your client" – scoates Apr 11 '11 at 2:34
4  
The point is that you're testing a lot more than your client. Also file_get_contents has to allocate a buffer and return the result, whereas curl_exec doesn't (unless you have CURLOPT_RETURNTRANSFER set). I don't think your benchmark shows a real 10% increase in performance; there are too many unconsidered factors. – scoates Apr 11 '11 at 3:37
2  
@scoates: But as I said both tests were executed several times at approximately the same time and under the same circumstances, I believe querying Google (or any other decent ISP) reflects the real usage cases a lot better than just querying localhost. – Alix Axel Apr 11 '11 at 4:28
1  
@scoates: I ran the same code but changed http://www.google.com/ to http://localhost/test.txt, these were the results I got: pastie.org/1781423. As you can see the difference is even bigger. – Alix Axel Apr 11 '11 at 4:33
show 4 more comments
feedback

Look into the curl_multi_* functions in PHP, which can fetch several URLs in parallel.

http://se2.php.net/manual/en/ref.curl.php

link|improve this answer
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.

link|improve this answer
Also recommend Pavuk for crawling. It's fast and has any and every config setting you could want. – Marco Aug 18 '09 at 20:14
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:

!!! Benchmarking function FGC for 10000 iteration
(args:"http:\/\/wizcorp.mt.dev.wizcorp.jp\/")...
=================== Results:===================
time total: 55.87174262
time min: 0.00449204
time max: 1.04380012
time avg: 0.005587174262
memory total: 98840188
memory min: 9884
memory max: 9972
memory avg: 9884.0188

!!! Benchmarking function CURL for 10000 iteration
(args:"http:\/\/wizcorp.mt.dev.wizcorp.jp\/")...
=================== Results: ===================
time total: 44.02280676
time min: 0.0032711
time max: 0.73346305
time avg: 0.004402280676
memory total: 189356004
memory min: 17268
memory max: 21092
memory avg: 18935.6004


Array (
[FGC] => 0
[cURL] => 0
)

=================== 2nd RUN - valgrind======================

!!! Benchmarking function CURL for 10000 iteration
(args:"http:\/\/wizcorp.mt.dev.wizcorp.jp\/")...

[...]

==23067==
==23067== ERROR SUMMARY: 39 errors from 8 contexts (suppressed: 247 from 1)
==23067== malloc/free: in use at exit: 1,505 bytes in 27 blocks.
==23067== malloc/free: 294,144 allocs, 294,117 frees, 534,758,355 bytes allocated.
==23067== For counts of detected errors, rerun with: -v
==23067== searching for pointers to 27 not-freed blocks.
==23067== checked 859,296 bytes.
==23067==

!!! Benchmarking function FGC for 10000 iteration

[...]

==6215==
==6215== ERROR SUMMARY: 39 errors from 8 contexts (suppressed: 247 from 1)
==6215== malloc/free: in use at exit: 1,505 bytes in 27 blocks.
==6215== malloc/free: 9,654,350 allocs, 9,654,323 frees, 788,096,048 bytes allocated.
==6215== For counts of detected errors, rerun with: -v
==6215== searching for pointers to 27 not-freed blocks.
==6215== checked 859,296 bytes:

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.

link|improve this answer
Pastebin links to code used: Benchmark function toolset : pastebin.com/Jad5TjsQ cURL script: pastebin.com/H0DkRmVR FGC script: pastebin.com/5g9hDALY – Marc Trudel Dec 14 '10 at 8:17
I just noticed that your pasties set $retries = 3 in FGC and $retries = 2 on CURL, that might have an impact on your benchmarks. – Alix Axel Apr 28 at 2:41
feedback

protected by Alix Axel Apr 6 '11 at 21:56

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.