in reply to Re: HelpNeeded!!! How to test for the fastest server to download from?
in thread How to test for the fastest server to download from?

You probably want to use HEAD, not GET. Something like:
$ua = LWP::UserAgent->new; $request = HTTP::Request->new(HEAD => "$url"); $response = $ua->request($request); $status_line = $response->status_line;
Using 'GET' on a large page will not really be a good determining factor of response time, but using HEAD will.
  • Comment on Re: HelpNeeded!!! How to test for the fastest server to download from?
  • Download Code