This is the scheme of the ap
i use the node.js server for a match-making thing, a queue of users.
-
meteor sends users(players) to the node server .
-
node stores the users and creates parties of players
-
send the parties created back to meteor
My question is, does it matter which meteor instance recives the party such that there is no duplication ?
Or i should save the party to the database, but i need confirmation from the users. so it will generate useless data too.
Also how i can connect the node and the meteor with pub/sub
I want to use streams for something like chatting, user status etc, will users recive duplicate data ?
As for load balancing i've seen phussion passenger and also it spawns new instances of meteor. Is this working with meteor cluster ?