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.
为什么人们做了基于 TCP 的 HTTP 协议,而不是基于 UDP?
TCP 保证数据的可靠传输,而 UDP 则不能。这意味着如果他们要在 UDP 上实现 HTTP,他们将不得不在应用层添加可靠的传输机制(例如错误检查),而这完全是不必要的。在浏览网页时,人们更喜欢可靠性而不是性能。