What is the difference between a ConcurrentHashMap and a Hashtable in Java?
Which is more efficient for non-threaded applications?
|
ConcurrentHashMap uses multiple buckets to store data. This avoids read locks and greatly improves performance over a HashTable. Both are thread safe, but there are obvious performance wins with ConcurrentHashMap. HashTable was released in old versions of Java whereas ConcurrentHashMap is a java 5+ thing. HashMap is the best thing to use in a single threaded application. |
|||||
|
|
I don't know about efficiency. I doubt that the choice matters from that point of view. I'd recommend using ConcurrentHashMap. It's a more modern solution to the problem. Hashtable was part of Java 1.0. I never use it or Vector anymore. Prefer the Java Collections API in every case. |
|||
|
|
|
It is always recommended to use concurrenthashmap over hashtable. Please find the article on it http://www.ibm.com/developerworks/java/library/j-jtp07233/index.html |
|||
|
|
HashMap. – Keith Randall Sep 28 '12 at 19:48