1).獲取緩存值 object o = HttpRuntime.Cache.Get("Key"); 2).設置相對過期緩存值有兩種寫法 第一種: HttpRuntime.Cache.Insert("Key", "Value", null, System.Web.Caching.Cache.NoAbs... ...
1).獲取緩存值 object o = HttpRuntime.Cache.Get("Key"); 2).設置相對過期緩存值有兩種寫法 第一種: HttpRuntime.Cache.Insert("Key", "Value", null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromSeconds(30)); 第二種: HttpRuntime.Cache.Insert("Key","Value", null, DateTime.MaxValue, TimeSpan.FromSeconds(30)); 3)設置絕對過期緩存值兩種寫法 HttpRuntime.Cache.Insert("Key","Value",null,DateTime.Now.AddMinutes(10),System.Web.Caching.Cache.NoSlidingExpiration); 第二種: HttpRuntime.Cache.Insert("Key", "Value", null, DateTime.Now.AddMinutes(10), TimeSpan.Zero); 3)移除緩存 HttpRuntime.Cache.Remove("Key");