I'm using OutputCache in an asp.net mvc5 application to cache a list in my application this way:
[(Duration = 60, VaryByParam = "none")]
public ActionResult Index()
{}
I just need to take advantage of this cache while the user is logged into the application. ie I will only load the list again in the new user login.
How can I define this?