curl和aria2之间有什么区别?这 post将其描述为下载引擎,但没有进一步详细说明。另外,我怎么知道哪一个会更快?
发布于 2020-05-09 09:37:37
发布于 2021-09-13 10:54:06
引用https://daniel.haxx.se/blog/2019/07/22/curl-goez-parallel/
“没有相同的文件分割这种功能使curl并行执行URL。它仍然不会像其他一些工具那样使用多个并行传输来下载相同的URL。这可能是将来微调这个功能时需要实现和提供的东西。”
据我所知,curl从未添加过“相同的文件分割”来加速下载。比较表中省略了这一点,这是aria2中的一个关键特性。例如,您可以使用-x 5进行更快的下载。
$ aria2c -x 5 URL
where:
-s N : use N connections to download (s for split), default 5
-x N : maximum number of connections per server for download, default 1
quoted from: http://tuxdiary.com/2013/08/16/axel-uget-linux-download-managers/https://askubuntu.com/questions/1032002
复制相似问题