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?
Using 'GET' on a large page will not really be a good determining factor of response time, but using HEAD will.$ua = LWP::UserAgent->new; $request = HTTP::Request->new(HEAD => "$url"); $response = $ua->request($request); $status_line = $response->status_line;
|
|---|