Is there any Perl module available for download throttling? I would like to download a certain file but limit the download rate to a specific number of KB/sec .
|
1
|
|||
|
|
|
Looks like WWW::Curl and the CURLOPT_MAX_RECV_SPEED_LARGE option is what you want:
In this example, we download Google at one byte per second. Very slow. |
||
|
|
|
|
A technique not limited to Perl and not limited to a particular protocol is to use trickle:
It would be nice to package up this technique as a Perl module (e.g. that subclasses IO::Handle) but I am not aware of one. |
||
|
|
|
|
If a recent version of wget is installed on your system, this command has a |
||
|
|
