I have a project that has both MVC controllers and WebApi controllers. I am using System.Web.HttpContext.Current.Cache to store some static data so it is not retrieved from the database for every request. It looks like the WebApi controllers do not see the data cached by the MVC controllers. Do they use a different instance of System.Web.HttpContext.Current.Cache?
Thanks, Bert-Jan