Example #1
0
        public ActionResult Index()
        {
            var cacheProvider = new CacheProvider(new MemoryCache(Options.Create(new MemoryCacheOptions())));

            cacheProvider.AddCacheValue("cached title");

            ViewBag.Title = cacheProvider.GetCachedValue();

            return(View());
        }