C # ReaderWriterLock

Source: Internet
Author: User

A ReaderWriterLock is used to implement a synchronous Cache to control the read/write operations on the Cache.

using System;  using System.Collections.Generic;  using System.Linq;  using System.Text;  using System.Threading;    namespace ReadWriteLockSlimTest  {      class SynchronizedCache      {          private ReaderWriterLockSlim cacheLock = new ReaderWriterLockSlim();          private Dictionary<int, string> innerCache = new Dictionary<int, string>();            public string Read(int key)          {              cacheLock.EnterReadLock();              try              {                  return innerCache[key];              }              finally              {                  cacheLock.ExitWriteLock();              }          }            public void Add(int key, string value)          {              cacheLock.EnterWriteLock();              try              {                  innerCache.Add(key, value);              }              finally              {                  cacheLock.ExitWriteLock();              }          }            public bool AddWithTimeout(int key, string value, int timeout)          {              if (cacheLock.TryEnterWriteLock(timeout))              {                  try                  {                      innerCache.Add(key, value);                  }                  finally                  {                      cacheLock.ExitWriteLock();                  }                  return true;              }              else              {                  return false;              }          }            public AddOrUpdateStatus AddOrUpdate(int key, string value)          {              cacheLock.EnterUpgradeableReadLock();              try              {                  string result = null;                  if (innerCache.TryGetValue(key, out result))                  {                      if (result == value)                      {                          return AddOrUpdateStatus.Unchanged;                      }                      else                      {                          cacheLock.EnterWriteLock();                          try                          {                              innerCache[key] = value;                          }                          finally                          {                              cacheLock.ExitWriteLock();                          }                          return AddOrUpdateStatus.Updated;                      }                  }                  else                  {                      cacheLock.EnterWriteLock();                      try                      {                          innerCache.Add(key, value);                      }                      finally                      {                          cacheLock.ExitWriteLock();                      }                      return AddOrUpdateStatus.Added;                  }              }              finally              {                  cacheLock.ExitUpgradeableReadLock();              }          }            public void Delete(int key)          {              cacheLock.EnterWriteLock();              try              {                  innerCache.Remove(key);              }              finally              {                  cacheLock.ExitWriteLock();              }          }            public enum AddOrUpdateStatus          {              Added,              Updated,              Unchanged          };      }  }  

 

 

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.