计算下载/上传速度
如果计算下载/上传速度,哪个更现实?
是否将接收/发送的总数据除以总传输时间,或者是否将接收/发送的块大小除以自上次传输以来的时间(接收之间的当前时间)?
第二个选项更新了,但我不确定它是否是一个稳定的值。
应用程序中使用哪一种?
If one calculates download/upload speed, what is more realistic?
If the total data received/sent is divided by the total transfer time or if the chunk size received/sent is divided by the time since the last transfer(the current time between receiving)?
The second option is more up to date but I am not sure if it is a stable value.
Which one is used in applications?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
两者都不。最好的方法是最后 N 个块的移动平均值。
Neither. The best approach is a moving average of the last N chunks.