Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Cache cache = System.Web.HttpRuntime.Cache;
  2.  
  3. var config = new NameValueCollection();
  4. var cache = new MemoryCache("myMemCache", config);
  5. cache.Add(new CacheItem("a", "b"),
  6. new CacheItemPolicy
  7. {
  8. Priority = CacheItemPriority.NotRemovable,
  9. SlidingExpiration=TimeSpan.FromMinutes(30)
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement