Tagged Questions
18
votes
9answers
6k views
Java ReentrantReadWriteLocks - how to safely acquire write lock?
I am using in my code at the moment a ReentrantReadWriteLock to synchronize access over a tree-like structure. This structure is large, and read by many threads at once with occasional modifications ...
2
votes
2answers
496 views
Is it a good practice to wrap ConcurrentHashMap read and write operations with ReentrantLock?
I think in the implementation of ConcurrentHashMap, ReentrantLock has already been used. So there is no need to use ReentrantLock for the access of a ConcurrentHashMap object. And that will only add ...
0
votes
3answers
309 views
Using ReentrantReadWriteLock and a boolean flag
I have a cache that gets loaded upfront with a large amount of data (by a background thread) and is unusable until full (it will also get reloaded every so often and be unusable during that load). I ...