In Java, ConcurrentHashMap is there for better multithreading solution. Then when should I use ConcurrentSkipListMap? Is it a redundancy?

Does multithreading aspects between these two are common?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

These two classes vary in a few ways.

ConcurrentHashMap does not guarantee* the runtime of its operations as part of its contract. It also allows tuning for certain load factors (roughly, the number of threads concurrently modifying it).

ConcurrentSkipListMap, on the other hand, guarantees average O(log(n)) performance on a wide variety of operations. It also does not support tuning for concurrency's sake. ConcurrentSkipListMap also has a number of operations that ConcurrentHashMap doesn't: ceilingEntry/Key, floorEntry/Key, etc. It also maintains a sort order, which would otherwise have to be calculated (at notable expense) if you were using a ConcurrentHashMap.

Basically, different implementations are provided for different use cases. If you need quick single key/value pair addition and quick single key lookup, use the HashMap. If you need faster in-order traversal, and can afford the extra cost for insertion, use the SkipListMap.

*Though I expect the implementation is roughly in line with the general hash-map guarantees of O(1) insertion/lookup; ignoring re-hashing

link|improve this answer
Ok. Log(n) is fine but does ConcurrentSkipListMap is space efficient? – DKSRathore Nov 28 '09 at 7:13
Skip lists are necessarily larger than Hashtables, but the tunable nature of ConcurrentHashMap makes it possible to construct a Hashtable that is larger than the equivalent ConcurrentSkipListMap. In general, I'd expect the skip list to be larger but on the same order of magnitude. – Kevin Montrose Nov 28 '09 at 7:24
"It also does not support tuning for concurrency's sake".. Why? What is the link? – Pacerier Feb 23 at 20:12
@Pacerier - I didn't mean it does support tuning because it's concurrent, I mean it doesn't allow you to tune parameters that influence it's concurrent performance (while ConcurrentHashMap does). – Kevin Montrose Feb 23 at 20:17
@KevinMontrose Ic, so you meant "It also does not support concurrency tuning." – Pacerier Feb 23 at 21:37
feedback

See Skip List for a definition of the data structure. A ConcurrentSkipListMap stores the Map in the natural order of its keys (or some other key order you define). So it'll have slower get/put/contains operations than a HashMap, but to offset this it supports the SortedMap and NavigableMap interfaces.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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