TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

QUIC File Transfer Service, a CLI and srv for transferring large files

40 点作者 Hydrocarb0n10 个月前

7 条评论

sirgallo10 个月前
Hey, not sure how this came up but I’m the original author of the repository…thanks for taking a look at my code and thinking it was cool enough to post on here. If you have any questions let me know, or create an issue on the repository and I’ll try to take a look at it.
bradknowles10 个月前
Looks like the last time the code itself was touched was about seven months ago. And there are no open issues. I did spot the following in the README.md file: ``` An optional MD5 checksum can be calculated as well for the transferred file to verify that the content is the same as the source file. The server provides its own MD5 for comparison once the file is written. However, this would only be an additional level of redundancy as quic has a reliability guarantee already built into the protocol. ``` Could we make this SHA-256 or something else a little more modern and robust than MD5?
评论 #40971731 未加载
tarasglek10 个月前
Weird to be comparing vs rsync. Rsync is notorious for maximizing latency as it has no pipelining.<p>Better baseline would be transferring data via ssh + tar. Or serving a directory over http and concurrently downloading a file with axel
评论 #40971753 未加载
评论 #40968870 未加载
nunobrito10 个月前
Well.. I&#x27;m not a go programmer. Just wanted the usual download&#x2F;install and syntax to use the tool.<p>Nowhere to be found. I guess I&#x27;ll just open a ticket there.
评论 #40971738 未加载
vips7L10 个月前
How does QUIC compare to the proprietary Aspera protocol?
评论 #40971764 未加载
Hydrocarb0n10 个月前
The File Transfer Service utilizes the quic-go implementation of the quic Protocol, built on top of UDP. Since quic allows for multiplexing of streams on a single connection, the service takes advantage of this to attempt to speed up file transfers by processing and writing the file from the remote host (the server) to the destination (the client) concurrently
评论 #40963441 未加载
评论 #40965138 未加载
GauntletWizard10 个月前
Is it time to move QUIC past UDP yet? Does QUIC deserve it&#x27;s own Protocol number? There&#x27;s only one byte in IP for protocol number, so it makes sense to limit the number of applications, but I believe QUIC has reached that level.<p><a href="https:&#x2F;&#x2F;www.iana.org&#x2F;assignments&#x2F;protocol-numbers&#x2F;protocol-numbers.xhtml#protocol-numbers-1" rel="nofollow">https:&#x2F;&#x2F;www.iana.org&#x2F;assignments&#x2F;protocol-numbers&#x2F;protocol-n...</a>
评论 #40964516 未加载
评论 #40963429 未加载
评论 #40966171 未加载