我试图在伙伴关系中创造实时的网络浏览器游戏。 净额MVC3,但我不了解处理服务器方面的实时事件的最佳办法。
Imagine that the client wants to upgrade a building, upgrading a building takes time. A record gets inserted in the database that holds the end-time and on the client a ajax timer start s running. I was thinking about having a windows service running all the time. Every second the service checks the table and does the real processing when the time passed the end-time. However I could imagine that when you have a huge amount of data to process this can get problematic.
What would be the best way of doing this?
乘客。