/// <summary> /// Run the application. /// </summary> public override BoolMessageItem Execute() { // Using default ASP.NET Cache. Cacher.Insert("my_site", "http://www.knowledgedrink.com"); Cacher.Insert("my_show", "ufc: ultimate fighting"); Cacher.Insert("my_place", "bahamas", 360, true); Console.WriteLine("===================================================="); Console.WriteLine("CACHE "); Console.WriteLine("Obtained from cache : '" + Cacher.Get <string>("my_site") + "'"); Console.WriteLine("Contains cache for 'my_show' : " + Cacher.Contains("my_show")); Console.WriteLine(Environment.NewLine); return(BoolMessageItem.True); }
/// <summary> /// Run the application. /// </summary> public override BoolMessageItem Execute() { // Using default ASP.NET Cache. //<doc:example> Cacher.Insert("my_site", "http://www.ufc.com"); Cacher.Insert("my_show", "ufc: ultimate fighting"); Cacher.Insert("my_place", "bahamas", 360, true); Cacher.Get <string>("my_framework", 30, () => "commonlibrary.net"); Console.WriteLine("===================================================="); Console.WriteLine("CACHE "); Console.WriteLine("Obtained from cache : '" + Cacher.Get <string>("my_site") + "'"); Console.WriteLine("Contains cache for 'my_show' : " + Cacher.Contains("my_show")); Console.WriteLine(Environment.NewLine); //</doc:example> return(BoolMessageItem.True); }