Solution to concurrency control problem.
- There are two locks: read lock and write lock
- Only those with a read lock can read, and write lock can write
- There must always be either
- Many reader locks, no writer lock
- One writer lock, no reader lock
Search
Solution to concurrency control problem.