I have an MVC application with approx 20 controllers.
In this application I want to cache certain views (mostly partials) for 60 seconds, i.e. the result would only change once per minute, even if the underlying data changed during that minute.
Seems simple enough.
The complication is that the partials show different data dependant on the currently logged in user. How can I make sure that the cache is per user using MVC3?