I had asked a question on how to implement real time updates in ASP.NET and received a very explanatory and a helpful answer from “jdk” at:
How to implement real time updates in ASP.NET
I understand that memcached or .net caching application block can be used as the caching layer. Currently, I am looking for a very simple mechanism to implement this and do not have the resources for using memcached or the caching application block.
Can someone suggest a solution?
You can always store your data into Static fields. This will be shared across all users and will be alive as long as the IIS is not reseted or stopped.