High performance TCP server in C#

后端 未结 5 1313
礼貌的吻别
礼貌的吻别 2020-11-28 01:29

I am an experienced C# developer, but I have not developed a TCP server application so far. Now I have to develop a highly scalable and high performance server that can hand

5条回答
  •  借酒劲吻你
    2020-11-28 02:06

    I think you are also looking for UDP techniques. For 10k clients, it is fast but the issue is you have to implement ACKnowledgement for each message that you received the message. In UDP you dont need to open a socket for each client but need to implement heartbeat/ping mechanism after x seconds to check which client is connected or not.

提交回复
热议问题