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 more synchronization overhead. Any comments?
|
feedback
|
|
What would you (or anyone) like to achieve with that?
In other words, adding extra locking would increase the chance of thread contention significantly (as well as making the thread safety guarantees of read operations stricter, for the record).
From Java Generics and Collections, chapter 16.4. | ||||
|
feedback
|
|
The whole point of ConcurrentHashMap, is not to lock around access/modifications to it. Extra locking just adds overhead. | |||
|
feedback
|