In solving reader write problem, I try to use ReentrantReadWriteLock. I know that all readers can acquire the read lock at the same time, however, write lock has to be wait for all the read locks to be released. Will this cause the writer to be in the starvation state if we have a lot of readers?

link|improve this question

61% accept rate
feedback

1 Answer

up vote 5 down vote accepted

ReentrantReadWriteLock can be constructed with a fairness policy. If the flag is true, then there won't be starvation, however if it's false, it's possible there could be.

link|improve this answer
With no fairness, it doesn't even take a lot of readers to starve out the writer. All you need is there for always be at least one reader with the lock. – yshavit Jan 8 at 4:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.