Skip to content

Files

Latest commit

7a7e891 · Sep 30, 2018

History

History
This branch is 2026 commits behind iluwatar/java-design-patterns:master.

reader-writer-lock

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 28, 2017
Feb 19, 2018
Nov 28, 2017
Sep 30, 2018
layout title folder permalink categories tags
pattern
Reader Writer Lock
reader-writer-lock
/patterns/reader-writer-lock/
Concurrency
Java
Difficulty-Intermediate
I/O
Performance

Intent:

Suppose we have a shared memory area with the basic constraints detailed above. It is possible to protect the shared data behind a mutual exclusion mutex, in which case no two threads can access the data at the same time. However, this solution is suboptimal, because it is possible that a reader R1 might have the lock, and then another reader R2 requests access. It would be foolish for R2 to wait until R1 was done before starting its own read operation; instead, R2 should start right away. This is the motivation for the Reader Writer Lock pattern.

alt text

Applicability:

Application need to increase the performance of resource synchronize for multiple thread, in particularly there are mixed read/write operations.

Real world examples:

Credits