WCF Websocket的原型限制并发连接的数量。即便如此,我还是想和多个客户玩一点游戏。也许Rx可以用来处理订阅。你会怎么做呢?
我认为WCF允许您更改最大连接数:http://msdn.microsoft.com/en-us/library/system.servicemodel.nettcpbinding.maxconnections.aspx
如果你使用netttcpbinding,那么你可以设置最大连接数:
int maxNumConnections = 100;
// Set the maximum number of connections for your tcp binding
binding.MaxConnections = maxNumConnections;