- Multithreading with C# Cookbook(Second Edition)
- Eugene Agafonov
- 573字
- 2021-07-09 19:35:38
Using the ReaderWriterLockSlim construct
This recipe will describe how to create a thread-safe mechanism to read and write to a collection from multiple threads using a ReaderWriterLockSlim
construct. ReaderWriterLockSlim
represents a lock that is used to manage access to a resource, allowing multiple threads for reading or exclusive access for writing.
Getting ready
To step through this recipe, you will need Visual Studio 2015. There are no other prerequisites. The source code for this recipe can be found at BookSamples\Chapter2\Recipe8
.
How to do it...
To understand how to create a thread-safe mechanism to read and write to a collection from multiple threads using the ReaderWriterLockSlim
construct, perform the following steps:
- Start Visual Studio 2015. Create a new C# console application project.
- In the
Program.cs
file, add the followingusing
directives:using System; using System.Collections.Generic; using System.Threading; using static System.Console; using static System.Threading.Thread;
- Below the
Main
method, add the following code:static ReaderWriterLockSlim _rw = new ReaderWriterLockSlim(); static Dictionary<int, int> _items = new Dictionary<int, int>(); static void Read() { WriteLine("Reading contents of a dictionary"); while (true) { try { _rw.EnterReadLock(); foreach (var key in _items.Keys) { Sleep(TimeSpan.FromSeconds(0.1)); } } finally { _rw.ExitReadLock(); } } } static void Write(string threadName) { while (true) { try { int newKey = new Random().Next(250); _rw.EnterUpgradeableReadLock(); if (!_items.ContainsKey(newKey)) { try { _rw.EnterWriteLock(); _items[newKey] = 1; WriteLine($"New key {newKey} is added to a dictionary by a {threadName}"); } finally { _rw.ExitWriteLock(); } } Sleep(TimeSpan.FromSeconds(0.1)); } finally { _rw.ExitUpgradeableReadLock(); } } }
- Inside the
Main
method, add the following code:new Thread(Read){ IsBackground = true }.Start(); new Thread(Read){ IsBackground = true }.Start(); new Thread(Read){ IsBackground = true }.Start(); new Thread(() => Write("Thread 1")){ IsBackground = true }.Start(); new Thread(() => Write("Thread 2")){ IsBackground = true }.Start(); Sleep(TimeSpan.FromSeconds(30));
- Run the program.
How it works...
When the main program starts, it simultaneously runs three threads that read data from a dictionary and two threads that write some data into this dictionary. To achieve thread safety, we use the ReaderWriterLockSlim
construct, which was designed especially for such scenarios.
It has two kinds of locks: a read lock that allows multiple threads to read and a write lock that blocks every operation from other threads until this write lock is released. There is also an interesting scenario when we obtain a read lock, read some data from the collection, and, depending on that data, decide to obtain a write lock and change the collection. If we get the write locks at once, too much time is spent, not allowing our readers to read the data because the collection is blocked when we get a write lock. To minimize this time, there are EnterUpgradeableReadLock
/ExitUpgradeableReadLock
methods. We get a read lock and read the data; if we find that we have to change the underlying collection, we just upgrade our lock using the EnterWriteLock
method, then perform a write operation quickly and release a write lock using ExitWriteLock
.
In our case, we get a random number; we then get a read lock and check whether this number exists in the dictionary key collection. If not, we upgrade our lock to a write lock and then add this new key to a dictionary. It is a good practice to use try
/finally
blocks to make sure that we always release locks after acquiring them.
All our threads have been created as background threads, and after waiting for 30 seconds, the main thread as well as all the background threads get completed.
- Leap Motion Development Essentials
- Visual C++串口通信技術詳解(第2版)
- Raspberry Pi 2 Server Essentials
- C程序設計案例教程
- Linux:Embedded Development
- 21天學通C++(第5版)
- 搞定J2EE:Struts+Spring+Hibernate整合詳解與典型案例
- Unity 2018 Augmented Reality Projects
- OpenStack Networking Essentials
- Xcode 6 Essentials
- C語言從入門到精通
- 視窗軟件設計和開發自動化:可視化D++語言
- Implementing Splunk(Second Edition)
- 數據庫技術及應用教程上機指導與習題(第2版)
- Visual FoxPro程序設計