Hacker News new | ask | show | jobs
by davedx 998 days ago
The basic advice in the article is sound really, make writes to db very async and keep all your state in memory.

Also important for most online games: any core gameplay relevant actions need to be server authenticated - usually you do RPCs from client to server, resolve the result, then broadcast it to the relevant clients.