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..
|
The point is to provide an implementation of Another feature of
This code is not threadsafe, because another thread could add a mapping for
|
|||||||||||||||
|
|
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.) |
|||||
|
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.