Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what is the use of concurrent hash map in java? what are the benefits of it? how does it work? help please..Sample code will be useful too..

share|improve this question

2 Answers

up vote 21 down vote accepted

The point is to provide an implementation of HashMap that is threadsafe. Multiple threads can read from and write to it without the chance of receiving out-of-date or corrupted data. ConcurrentHashMap provides its own synchronization, so you do not have to synchronize accesses to it explicitly.

Another feature of ConcurrentHashMap is that it provides the putIfAbsent method, which will atomically add a mapping if the specified key does not exist. Consider the following code:

ConcurrentHashMap<String, Integer> myMap = new ConcurrentHashMap<String, Integer>();

// some stuff

if (!myMap.contains("key")) {
  myMap.put("key", 3);
}

This code is not threadsafe, because another thread could add a mapping for "key" between the call to contains and the call to put. The correct implementation would be:

myMap.putIfAbsent("key", 3);
share|improve this answer
I would describe it more as "safely unsynchronized." It allows two threads to be inside mucking about at the same time and promises to end up in a consistent state afterward. – Affe May 14 '10 at 17:42
1  
Synchronization is not an (external) ordering guarantee. – danben May 14 '10 at 17:47
1  
It is not a guarantee that threads requesting the monitor will receive it in the order requested, but it is a happens-before guarantee that once one thread acquires the monitor and starts modifying the map, no one else will see it until the modification is done. In the Concurrent Map one thread could start a put, then not get scheduled again for a long time and other threads can execute gets that won't see the in-progress put. – Affe May 14 '10 at 17:57
Given that the gets don't see the in-progress puts, will it not result in inconsistent state? – Vanchinathan Chandrasekaran Apr 27 '12 at 16:03
I notice you've used a String key; if string1.equals(string2)&&string1!=string2 do I still get the item in the ConcurrentHashMap? – Andrew Wyld Nov 19 '12 at 13:38
show 1 more comment

Really the big functional difference is it doesn't throw an exception and/or end up corrupt when someone else changes it while you're using it.

With regular collections, if another thread adds or removes an element while you're access it (via the iterator) it will throw an exception. ConcurrentHashMap lets them make the change and doesn't stop your thread.

Mind you it does not make any kind of synchronization guarantees or promises about the point-in-time visibility of the change from one thread to the other. (It's sort of like a read-committed database isolation, rather than a synchronized map which behaves more like a serializable database isolation. (old school row-locking SQL serializable, not Oracle-ish multiversion serializable :) )

The most common use I know of is in caching immutable derived information in App Server environments where many threads may be accessing the same thing, and it doesn't really matter if two happen to calculate the same cache value and put it twice because they interleave, etc. (e.g., it's used extensively inside the Spring WebMVC framework for holding runtime-derived config like mappings from URLs to Handler Methods.)

share|improve this answer
This is not true at all. The javadocs specify explicitly that all operations are threadsafe. – danben May 14 '10 at 17:43
All operations are threadsafe, but there is no happens before promise like there would be with a synchronized map. What you see when you look in a ConcurrentHashMap is the results of the most recently completed operations. Some of which may have begun significantly later in time than when you started trying to look. It works rather like a read-committed database isolation, whereas a synchronized map works more like a serializable database isolation. – Affe May 14 '10 at 17:46

protected by Praveen Apr 30 at 9:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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