Websockets and scalability

1) Single server instance and single client ==> How many websockets will be created and how many connections to websockets? If your client creates one webSocket connection, then that’s what there will be one webSocket connection on the client and one on the server. It’s the client that creates webSocket connections to the server so … Read more

How many concurrent users can a web app built in Meteor.js handle? [closed]

UPDATE ClassCraft reports one Meteor server handling 6400 concurrent users. Read more in the Scalability section of my Why Meteor article. See also the forum post How Many Simultaneous Users Does the Biggest Current Meteor App Support? Here’s a benchmark not exactly about concurrent users, but rather about setting up subscriptions (arguably a more stressful … Read more