I have created an online poker system using WCF net.tcp and WPF for the front end. It works great, but I feel there are some things I can improve upon when I convert the front end to Silverlight.
One of the questions I have for fellow architects is how should the game lobby be refreshed? A poker game lobby is continually updated with statistics like number of players, hands per hour, and flop percentage.
Since there could be hundreds of games in progress at any given time, I am not so sure that returning the entire list of games every 5 seconds (polling) is optimum. I was thinking of using a delta query since many games will not have status updates (e.g.: no players on the table).
I was thinking of using an update time so every time a client (which may be hundreds or even thousands!) poll, only the records updated within say 5, 10, or more seconds are returned.
The game lobby client will of course be responsible for reconciling the new data, but I think this could help relieve some of the burden on the game servers.
Any ideas?