In my web application I have data that are shown individually for each user I posted, posted Gone, the articles have begun and so on ...
Each user has their own particular stats.
With a huge datatel in the cache, all users are more flexible and "right" to work with whole data and then loop to search some user data or to cache every user Thought to datatile. CacheObj + userID ...
Users can filter their own results by dates and types so I need flexible and reliable solutions
thanks ...
The easiest way to cache the results of each user in session state. It is unique to every user when they first login / access, calculate results and store there. In this way, you do not need to cache all the user's information in memory at all times. You have to store it, who is currently logged in
Comments
Post a Comment