ASP. NET Cache operations

Source: Internet
Author: User

 

/// <Summary> /// set the Cache value of the Key specified by the current application. /// </summary> /// <param name = "Key"> </param> /// <param name = "value"> </param> /// <param name = "time"> expiration time DateTime. now. addMinutes (10D) </param> public static void SetAbsoluteCache (string key, object value, double minutes) {HttpRuntime. cache. insert (key, value, null, DateTime. now. addMinutes (minutes), Cache. noSlidingExpiration);} public static void SetAbsoluteCache (string key, object value, double minutes, CacheItemPriority priority, CacheItemRemovedCallback callBack) {HttpRuntime. cache. insert (key, value, null, DateTime. now. addMinutes (minutes), Cache. noSlidingExpiration, priority, callBack);} public static void SetAbsoluteCache (string key, object value, CacheDependency dependencies, double minutes) {HttpRuntime. cache. insert (key, value, dependencies, DateTime. now. addMinutes (minutes), Cache. noSlidingExpiration);} public static void SetAbsoluteCache (string key, object value, CacheDependency dependencies, double minutes, CacheItemPriority priority, CacheItemRemovedCallback callBack) {HttpRuntime. cache. insert (key, value, dependencies, DateTime. now. addMinutes (minutes), Cache. noSlidingExpiration, priority, callBack );} /// <summary> /// set the Cache value of the Key specified by the current application. /// </summary> /// <param name = "key"> </param> /// <param name = "value"> </param> /// <param name = "time"> relative expiration time TimeSpan. fromMinutes (10D) </param> public static void SetSlidingCache (string key, object value, double minutes) {HttpRuntime. cache. insert (key, value, null, Cache. noAbsoluteExpiration, TimeSpan. fromMinutes (minutes);} public static void SetSlidingCache (string key, object value, double minutes, CacheItemPriority priority, CacheItemRemovedCallback callBack) {HttpRuntime. cache. insert (key, value, null, Cache. noAbsoluteExpiration, TimeSpan. fromMinutes (minutes), priority, callBack);} public static void SetSlidingCache (string key, object value, CacheDependency dependencies, double minutes) {HttpRuntime. cache. insert (key, value, dependencies, Cache. noAbsoluteExpiration, TimeSpan. fromMinutes (minutes);} public static void SetSlidingCache (string key, object value, CacheDependency dependencies, double minutes, CacheItemPriority priority, CacheItemRemovedCallback callBack) {HttpRuntime. cache. insert (key, value, dependencies, Cache. noAbsoluteExpiration, TimeSpan. fromMinutes (minutes), priority, callBack );}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.