Broadcast like UDP with the reliability of TCP

后端 未结 16 1426
陌清茗
陌清茗 2021-01-30 02:30

I\'m working on a .net solution that is run completely inside a single network. When users make a change to the system, I want to launch an announcement and have everyone else h

16条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-30 03:11

    You'd definitely want to look into Pragmatic General Multicast:

    While TCP uses ACKs to acknowledge groups of packets sent (something that would be uneconomical over multicast), PGM uses the concept of Negative Acknowledgements (NAKs).

    For further G-diving, the term you're looking for is reliable multicast. Also take a look at Multipath TCP.

提交回复
热议问题