Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 HTTP 请求(在发送方)进行单个大文件传输(20gb),而接收方是一个只接收文件的远程系统。我在 linux 上使用发送方的 libcurl 和接收方的 mongoose 网络服务器在 C++ 中进行编码。性能实际上会有任何差异(可能在速度方面)?
我在几个地方读过这个,但我不太明白确切的区别,所以如果有人能用简单的话解释一下,那就太好了。谢谢
性能上没有区别,但是如果你让用户指定文件的路径,你应该使用 PUT,如果你知道文件在系统中的位置,使用 POST 作为 idomatic 代码。但是,不,其中一个没有性能优势。