What's the fastest way to check if a web site is up in Perl or C? - Stack Overflow most recent 30 from stackoverflow.com2010-03-18T00:05:54Zhttp://stackoverflow.com/feeds/question/1038352http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1038352/whats-the-fastest-way-to-check-if-a-web-site-is-up-in-perl-or-c1What's the fastest way to check if a web site is up in Perl or C?holydiverhttp://stackoverflow.com/users/506762009-06-24T13:31:04Z2009-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#10383664Answer by Rich Bradshaw for What's the fastest way to check if a web site is up in Perl or C?Rich Bradshawhttp://stackoverflow.com/users/165112009-06-24T13:33:44Z2009-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#10383894Answer by Alan Haggai Alavi for What's the fastest way to check if a web site is up in Perl or C?Alan Haggai Alavihttp://stackoverflow.com/users/663532009-06-24T13:36:20Z2009-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#10384154Answer by GrzegorzOledzki for What's the fastest way to check if a web site is up in Perl or C?GrzegorzOledzkihttp://stackoverflow.com/users/1185872009-06-24T13:39:13Z2009-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#10384723Answer by hillu for What's the fastest way to check if a web site is up in Perl or C?hilluhttp://stackoverflow.com/users/723442009-06-24T13:45:37Z2009-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#10387697Answer by depesz for What's the fastest way to check if a web site is up in Perl or C?depeszhttp://stackoverflow.com/users/801682009-06-24T14:34:07Z2009-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#10389567Answer by arsane for What's the fastest way to check if a web site is up in Perl or C?arsanehttp://stackoverflow.com/users/755012009-06-24T15:06:21Z2009-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#10425210Answer by boris callens for What's the fastest way to check if a web site is up in Perl or C?boris callenshttp://stackoverflow.com/users/113332009-06-25T07:05:52Z2009-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>