What's the fastest way to check if a web site is up in Perl or C? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T00:05:54Z http://stackoverflow.com/feeds/question/1038352 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c 1 What's the fastest way to check if a web site is up in Perl or C? holydiver http://stackoverflow.com/users/50676 2009-06-24T13:31:04Z 2009-06-25T07:05:52Z <p>Hello all,</p> <p>I'm trying to check if a web site is up and running. I'm currently doing this with UserAgent library in Perl with timeout 1. However, it is still too slow for me.</p> <p>I call the script every five minutes from cron. There are lots of links to check and the script takes more than five minutes to complete execution. So, I need a more efficient way to do this. It can even be a solution in C.</p> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1038366#1038366 4 Answer by Rich Bradshaw for What's the fastest way to check if a web site is up in Perl or C? Rich Bradshaw http://stackoverflow.com/users/16511 2009-06-24T13:33:44Z 2009-06-24T15:10:23Z <p>curl -I <a href="http://hostname" rel="nofollow">http://hostname</a></p> <p>First line will contain 503 or 404 if service not avaliable or page not found.</p> <p>time yields this for curl -I <a href="http://www.google.com" rel="nofollow">http://www.google.com</a></p> <pre><code>real 0m0.125s user 0m0.004s sys 0m0.004s </code></pre> <p>and this for curl -I <a href="http://www.google.cmo" rel="nofollow">http://www.google.cmo</a></p> <pre><code>real 0m0.120s user 0m0.004s sys 0m0.004s </code></pre> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1038389#1038389 4 Answer by Alan Haggai Alavi for What's the fastest way to check if a web site is up in Perl or C? Alan Haggai Alavi http://stackoverflow.com/users/66353 2009-06-24T13:36:20Z 2009-06-24T13:36:20Z <p>If there are lots of links, I suggest you make the program <a href="http://perldoc.perl.org/threads.html" rel="nofollow">multi-threaded</a> or <a href="http://perldoc.perl.org/functions/fork.html" rel="nofollow">fork()</a> it a few times. That way, you can expect speed improvements.</p> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1038415#1038415 4 Answer by GrzegorzOledzki for What's the fastest way to check if a web site is up in Perl or C? GrzegorzOledzki http://stackoverflow.com/users/118587 2009-06-24T13:39:13Z 2009-06-24T13:39:13Z <p>How about using <a href="http://freshmeat.net/projects/httping/" rel="nofollow">httping</a>?</p> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1038472#1038472 3 Answer by hillu for What's the fastest way to check if a web site is up in Perl or C? hillu http://stackoverflow.com/users/72344 2009-06-24T13:45:37Z 2009-06-24T13:45:37Z <p>Fetching resources from the network usually involves quite a bit of latency.</p> <p>As Alan Haggai Alavi suggested, you will probably want to divide the work onto several parallel threads/processes. The documentation for the <code>Parallel::ForkManager</code> module even has an example that you should be able to build upon.</p> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1038769#1038769 7 Answer by depesz for What's the fastest way to check if a web site is up in Perl or C? depesz http://stackoverflow.com/users/80168 2009-06-24T14:34:07Z 2009-06-24T14:34:07Z <p>It is slow most probably because you're doing it sequentially.</p> <p>Consider using <a href="http://search.cpan.org/~marclang/ParallelUserAgent-2.57/lib/LWP/Parallel/UserAgent.pm" rel="nofollow">LWP::Parallel::UserAgent</a> - it will run many requests at the same time.</p> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1038956#1038956 7 Answer by arsane for What's the fastest way to check if a web site is up in Perl or C? arsane http://stackoverflow.com/users/75501 2009-06-24T15:06:21Z 2009-06-24T15:06:21Z <p>Following ways to accelerate it:</p> <ol> <li>Just check if we can set up a socket to 80 port of target server, do not really send a Get http request, or just send a simple HEAD request.</li> <li>Use multi-thread to make it faster.</li> </ol> http://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c/1042521#1042521 0 Answer by boris callens for What's the fastest way to check if a web site is up in Perl or C? boris callens http://stackoverflow.com/users/11333 2009-06-25T07:05:52Z 2009-06-25T07:05:52Z <p>I don't know a whole lot of C (BLASPHEMY!) nor Perl, but how I see it I would try the following:</p> <ul> <li>One thread to do the file writing. This thread would have a que where it could write it's commands in.</li> <li>One thread per site you want to check. The thread would use whatever method suits you most of the other answers and then report to the main thread through an event it can trigger.</li> </ul> <p>2cts</p>