使用 LWP - Perl 设置下载速度
我正在开发一个从互联网下载文件的应用程序;这些文件主要位于 ftp 服务器中,我使用 LWP::Simple
和 getstore
函数来检索文件。但我想限制下载速度,就像在 wget
中一样...
您是否见过类似于 wget
--limit-rate 的东西code> 在 LWP
或 LWP::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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您主要关心的是 FTP 服务器,可以查看 Net::FTP::油门。您可以在构造函数中设置最大速率。
If your main concerns are FTP servers, maybe look at Net::FTP::Throttle. You can set maximum rate in constructor.
没有这样的选择。
如果您使用回调来获取响应正文,则可以在必要时故意减慢回调速度(使用 sleep())以提供所需的速率。
当然,您也可以完全避免 LWP。例如,您可以调用
wget
、curl
等。您还可以使用另一个模块,例如 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.
...或者你可以使用 LWP over libcurl :)
...Or you could use LWP over libcurl :)