使用 LWP - Perl 设置下载速度

发布于 2024-10-22 01:26:29 字数 283 浏览 1 评论 0原文

我正在开发一个从互联网下载文件的应用程序;这些文件主要位于 ftp 服务器中,我使用 LWP::Simplegetstore 函数来检索文件。但我想限制下载速度,就像在 wget 中一样...

您是否见过类似于 wget--limit-rate 的东西code> 在 LWPLWP::Simple 中实现?

谢谢

I am developing an application which download files from internet; the files are mainly in ftp servers, I am using LWP::Simple and the getstore function to retrieve the files. But I would like to limit the speed of download, like in wget ...

have you seen something similar to the --limit-rate from wget implemented within LWP or LWP::Simple??

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

╰沐子 2024-10-29 01:26:29

如果您主要关心的是 FTP 服务器,可以查看 Net::FTP::油门。您可以在构造函数中设置最大速率。

If your main concerns are FTP servers, maybe look at Net::FTP::Throttle. You can set maximum rate in constructor.

慕巷 2024-10-29 01:26:29

没有这样的选择。

如果您使用回调来获取响应正文,则可以在必要时故意减慢回调速度(使用 sleep())以提供所需的速率。

当然,您也可以完全避免 LWP。例如,您可以调用 wgetcurl 等。您还可以使用另一个模块,例如 WWW::Curl

更新:添加了最后一段。

There is no such option.

If you use a callback to grab the response body, you could intentionally slow down the callback (using sleep()) when necessary to provide the desired rate.

Of course, you could also avoid LWP entirely. For example, you could and shell out to call wget, curl or whatever. You could also use another module such as WWW::Curl.

Update: Added last paragraph.

つ低調成傷 2024-10-29 01:26:29

...或者你可以使用 LWP over libcurl :)

#!/usr/bin/env perl
use common::sense;

use LWP::Protocol::Net::Curl MAX_RECV_SPEED_LARGE => 10240; # 10 KB/s
use LWP::Simple;

getstore 'http://www.cpan.org/src/5.0/perl-5.16.2.tar.gz' => 'perl.tar.gz';

...Or you could use LWP over libcurl :)

#!/usr/bin/env perl
use common::sense;

use LWP::Protocol::Net::Curl MAX_RECV_SPEED_LARGE => 10240; # 10 KB/s
use LWP::Simple;

getstore 'http://www.cpan.org/src/5.0/perl-5.16.2.tar.gz' => 'perl.tar.gz';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文