I am running a node.js server with socket.io 0.9. (xhr-polling)
I tried to simulate 300 clients connected to one big room.
I noticed that when I emit one single message to all members in the room, about 40-50 people in the room will be disconnected!
Syntax to emit message to everyone in the room:
io.sockets.in(roomId).emit("abc", "efg");
It is fine if I reduce the number of clients in the room to 100. Emit messages to room won't disconnect them.
This is definitely not acceptable. What is happening?