I'm building a browser game with the front end in Actionscript and the backend in .NET with a MySql database tied together with a Webservice set up to receive JSON posts.
The facebook games I've worked with POST every 5 seconds, some of the casino flash games I've seen POST every single second. This game works with countdowns for upgrades and countdowns for incoming and outgoing attacks. So it would be ideal to POST every single second to be as synchronized as possible with the server.
Ok so, what should I take into account if I would like to POST every 1 second? I do several queries to the database, maybe 10 or more. Right now everything runs smooth... but perhaps when there are hundreds of players posting once a second I will see performance suffer. Any advice or tips on this?
Thanks