Cache whole result set or based on user ?
- by eugeneK
In my web application i have statistics which shown for each user separately
ie. posts made , posts made today , articles started by and so on...
Each user has his own special statistics.
What is more flexible and "right" to work with one huge DataTable in Cache with whole data from all users and then loop thought DataTable to find certain user data or to cache each user ie. cacheObj + userID...
User can filter his own results by dates and types which is why i need flexible and reliable solution
thanks...