. NET kind-1 buffering use

Source: Internet
Author: User

Buffer files by file name:

    /// <summary>    ///Specify directory files based on file name Buffering/// </summary>     Public classFilecacheadapter {Private stringCachefilepath =string.        Empty;  PublicFilecacheadapter (stringCachefilepath) {Cachefilepath=Cachefilepath; }         Public stringGetCache () {if(string. IsNullOrEmpty (Cachefilepath)) {return ""; }            if(!file.exists (Cachefilepath)) {                return ""; }            stringCacheKey =Path.getfilename (Cachefilepath); stringresult = Memorycache.default[cachekey] as string; //If there is no hit buffer, the buffer is initialized            if(Result = =NULL)            {                //Buffering Expiration Policy                varPolicy =NewCacheItemPolicy (); //Set Expiration TimePolicy. absoluteexpiration = DateTimeOffset.Now.AddSeconds (10.0); //Initialize buffer item Change detection collection                varFilepaths =Newlist<string>();                Filepaths.add (Cachefilepath); Policy. Changemonitors.add (NewHostfilechangemonitor (filepaths)); Result= File.readalltext (Cachefilepath, Encoding.default) + Environment.NewLine +DateTime.Now.ToString ();            MemoryCache.Default.Set (CacheKey, result, policy); }            returnresult; }    }

Examples of Use:

    string " E:\\cache\\cachetext.txt " ;     var New Filecacheadapter (Cachefilepath);     string data = Cache.getcache ();    

. NET kind-1 buffering use

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.