The default cache is 15min.
we can extend this using follwing code in Global.asax
we can extend this using follwing code in Global.asax
var viewEngine = new RazorViewEngine
{ViewLocationCache = new DefaultViewLocationCache(TimeSpan.FromHours(24))};
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(viewEngine);