I'm looking for a good reader/writer lock in C++. We have a use case of a single infrequent writer and many frequent readers and would like to optimize for this. Preferable I would like a cross-platform solution, however a Windows only one would be acceptable.
|
Newer versions of boost::thread have read/write locks (1.35.0 and later, apparently the previous versions did not work correctly). They have the names |
|||||||||
|
|
Using standard pre-tested, pre-built stuff is always good (for example, Boost as another answer suggested), but this is something that's not too hard to build yourself. Here's a dumb little implementation pulled out from a project of mine:
Yes, this is C and not C++. Translation is an exercise left to the reader. EditGreg Rogers pointed out that the POSIX standard does specify |
|||||||||||||||||
|
|
Whatever you decide to use, benchmark your work load against simple locks, as read/write locks tend to be 3-40x slower than simple mutex, when there is no contention. Here is some reference |
|||
|
|
|
There is an article about reader-writer locks on MSDN that presents some implementations of them. It also introduces the Slim reader/writer lock, a kernel synchronisation primitive introduced with Vista. There's also a CodeProject article about comparing different implementations (including the MSDN article's ones). |
|||||||||
|
|
You can use boost to create a read-write lock:
|
||||
|
|
|
Boost.Thread has since release 1.35.0 already supports reader-writer locks. The good thing about this is that the implementation is greatly cross-platform, peer-reviewed, and is actually a reference implementation for the upcoming C++0x standard. |
|||||||
|
|
I can recommend the ACE library, which provides a multitude of locking mechanisms and is ported to various platforms. Depending on the boundary conditions of your problem, you may find the following classes useful:
|
|||||
|
|
Intel Thread Building Blocks also provide a couple of rw_lock variants: http://www.threadingbuildingblocks.org/ They have a spin_rw_mutex for very short periods of contention and a queueing_rw_mutex for longer periods of contention. The former can be used in particularly performance sensitive code. The latter is more comparable in performance to that provided by Boost.Thread or directly using pthreads. But profile to make sure which one is a win for your access patterns. |
|||||||||
|
|
You could copy Sun's excellent ReentrantReadWriteLock. It includes features such as optional fairness, lock downgrading, and of course reentrancy. Yes it's in Java, but you can easily read and transpose it to C++, even if you don't know any Java. The documentation I linked to contains all the behavioral properties of this implementation so you can make sure it does what you want. If nothing else, it's a guide. |
|||||||||
|
|
http://www.codeproject.com/KB/threads/ReaderWriterLock.aspx Here is a good and lightweight implementation suitable for most tasks. |
|||
|
|
|
Multiple-Reader, Single-Writer Synchronization Lock Class for Win32 by Glenn Slayde |
|||
|
|