I recently competed in the Node Knockout and after the contest realized that my (unfinished) app had completely wrong architecture.
I am new to the Node world in general, about a month and a half of experience with it so I was hoping that someone could help me understand what would have been a good architecture.

What we had was a game doing real time communication in the browser. We were storing the game as a variable inside of io.sockets.on('connection') and that was clearly a major problem with timing because it would be possible to have a Game object that wasn't up to date. I realized after the contest that I should have been storing the Game object somewhere else. It was already stored in the database, but is it fast enough for "real time" gameplay to grab the Game from MongoDB on every Socket.io event instance?

If anyone has any links discussing architecture of applications like this please share, or better yet, share your personal experiences as SO needs more discussion about Node.

link|improve this question

If it's a real-time type game, why wouldn't you just store the game state in memory on the server? – einaros Sep 6 '11 at 8:22
Store it in redis instead. That's faster. – Raynos Sep 6 '11 at 9:39
Even the redis layer can be just fluff if you don't specifically need anything redis offers above pure storage. – einaros Sep 6 '11 at 10:58
@einaros : How would you suggest doing that if you can have an infinite number of games? Just an array of games at the server level? – James P. Wright Sep 6 '11 at 15:48
3  
@James, your game number isn't actually infinite. It might be large but if it grows beyond the capacity of a single server you simply add more servers. Real-time game state should not ever be pushed directly into a database. I'm the tech lead of a game server so consider that the voice of experience ;). In-memory state is always the way to go. Persist just enough to recover from crashes and whatnot if possible. – Remon van Vliet Sep 6 '11 at 17:25
show 2 more comments
feedback

closed as not a real question by Lasse V. Karlsen Oct 2 '11 at 12:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.