I want to implement caching of a list pulled from the db. I've had a look at this:
How can I cache objects in ASP.NET MVC?
I have this in my code:
var addresses = repository.GetAllAddresses();//returns IQueryable<string>
using the answer in the question above how can i cache this?, I have created the class CacheExtensions, but not sure where to go from there.