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.