消息传递是什么意思? http 或 udp
大家好,
我们在分布式系统中使用消息,消息是什么意思?
我们可以说 UDP 使用消息而不是 HTTP,有人能告诉我原因吗?
多谢
Hoi,
we use message in distributed system, what does message means?
we can say UDP use message but not HTTP,can anybody tell me the reason ?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
消息是您传递的一条信息:)
UDP 更快、更简单,并且不保证传递顺序,甚至不保证消息(数据包)的传递本身。 HTTP 依赖于 TCP,它保证按顺序交付,并进行必要的重试等,但它的开销更大,而 HTTP 则增加了更多的开销。
Message is a piece of information you pass around :)
UDP is faster, simpler and has no guarantees of order of delivery and even the very delivery of messages (packets). HTTP rides on TCP, which guarantees delivery in order, with necessary retries, etc, but it has a bit more overhead, and HTTP adds even more to the overhead.