How to store the data in memory and make it accessible by all active sessions
Hi
I have a game which needs to show the ranking of the winner. there is a winner table and it needs to be updated per second.
In order to reduce the number of all active sessions to connect to the database, I would like to store the calculated result of winner table in memory.
How should I do that in VC#, ASP.NET and MSSQL 2005?
I use a windows service to update the table. Can i create the cache memory in windows service and let another web service to call that cache memory to retrieve the cache data and present it in aspx?