slonopotam has asked for the wisdom of the Perl Monks concerning the following question:
used to download a file from the remote web server. The file is really text, but the server transmits it as application/zip (so browser users can download it instead of opening in their browsers). Everything goes OK except one thing : the download is very slow, about 1..2Kbits/second. Download of the same file from the same server via IE, Opera, or download manager runs much (~20..100 times) faster. CPU usage is less then 1 per cent. This doesn't depend upon the file's size. Thanks in advance for any suggestions.$req = HTTP::Request->new(GET,$url); $res = $ua->request($req);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTTP: Slow download
by aquarium (Curate) on Oct 05, 2004 at 14:02 UTC | |
|
Re: HTTP: Slow download
by lithron (Chaplain) on Oct 05, 2004 at 14:39 UTC |