下面的代碼示例將有一分鐘絕對過期時間的項添加到緩存中:
復制代碼 代碼如下:
Cache.Insert("CacheItem6", "Cached Item 6",
null, DateTime.Now.AddMinutes(1d),
System.Web.Caching.Cache.NoSlidingExpiration);
下面的代碼示例將有 10 分鐘彈性過期時間的項添加到緩存中:
復制代碼 代碼如下:
Cache.Insert("CacheItem7", "Cached Item 7",
null, System.Web.Caching.Cache.NoAbsoluteExpiration,
new TimeSpan(0, 10, 0));