If I have two multiple threads accessing a HashMap, but guarantee that they'll never be accessing the same key at the same time, could that still lead to a race condition?
|
In @dotsid's answer he says this:
He is correct. A HashMap that is updated without synchronization will break even if the threads are using disjoint sets of keys. Here are some of the things that can go wrong.
And if you have two threads simultaneously doing I can think of three solutions:
|
|||||
|
|
Just use a ConcurrentHashMap. The ConcurrentHashMap uses multiple locks which cover a range of hash buckets to reduce the chances of a lock being contested. There is a marginal performance impact to acquiring an uncontested lock. To answer your original question: According to the javadoc, as long as the structure of the map doesn't change, your are fine. This mean no removing elements at all and no adding new keys that are not already in the map. Replacing the value associated with existing keys is fine.
Though it makes no guarantees about visibility. So you have to be willing to accept retrieving stale associations occasionally. |
|||
|
|
|
It depends on what you mean under "accessing". If you just reading, you can read even the same keys as long as visibility of data guarantied under "happens-before" rules. This means that If you change a EDIT: If the first case is your actual situation, I recommend you to use And as @Lars Andren says, |
|||||||||||
|
|
Modifying a HashMap without proper synchronization from two threads may easily lead to a race condition.
|
|||
|
|