The JDK ships with CopyOnWrite collections for set and list, but none for Map and I've often lamented this fact. I know there are other collections implementations out there that have them, but it would be nice if one shipped as standard. It seems like an obvious omission and I'm wondering if there was a good reason for it. Anyone any idea why this was left out?

link|improve this question

62% accept rate
1  
A lot of people assume the java.util.Map is a Collection, but it isn't. This isn't directly related to your question, but some of the wording made me think that perhaps you had made this assumption, so I thought I'd point this out. – pkaeding Nov 22 '10 at 1:24
1  
Agreed, It might not implement the Collection interface and we could argue the semantics of what a true collection. But the result of such minutia wouldn't make a CopyOnWriteMap less valuable or less missing. – sgargan Nov 22 '10 at 4:07
Iteration isn't as common a use-case for maps as it is for other collections. – msandiford Nov 28 '10 at 20:21
If you are looking for a high-performance CopyOnWriteMap, we have an impl here: labs.atlassian.com/wiki/display/CONCURRENT/CopyOnWriteMap – Jed Wesley-Smith Jan 24 at 1:47
feedback

2 Answers

up vote 6 down vote accepted

I guess this depends on your use case, but why would you need a CopyOnWriteMap when you already have a ConcurrentHashMap?

For a plain lookup table with many readers and only one or few updates it is a good fit.

Compared to a copy on write collection:

Read concurrency:

Equal to a copy on write collection. Several readers can retrieve elements from the map concurrently in a lock-free fashion.

Write concurrency:

Better concurrency than the copy on write collections that basically serialize updates (one update at a time). Using a concurrent hash map you have a good chance of doing several updates concurrently. If your hash keys are evenly distributed.

If you do want to have the effect of a copy on write map, you can always initialize a ConcurrentHashMap with a concurrency level of 1.

link|improve this answer
The two kinds of collections serve different purposes. A CopyOnWrite collection will be read much more frequently than written and can generally avoid the overhead of locking for reads at the expense of the complete copy on each infrequent write. ConcurrentHashMap will still require a lock regardless of the concurrency value. – sgargan Nov 29 '10 at 6:57
Really what I'm looking for is a Map implementation that can be used very efficiently a lookup table. It would be written to very infrequently, (in most case once) and be optimized for reads without locks. – sgargan Nov 29 '10 at 7:02
Please read the javadoc for ConcurrentHashMap again, I think it suits your need. Here are two snippets from it: "A hash table supporting full concurrency of retrieval..." and "...all operations are thread-safe, retrieval operations do not entail locking...". So yes, it is a perfect fit for a concurrent lookup table. – Fredrik Bromee Nov 29 '10 at 10:25
You are quite correct, It serves my purpose and answers the question. Thanks kindly. – sgargan Nov 30 '10 at 22:25
This is an old thread, but its worth mentioning: ConcurrentHashMap uses lock striping. This means two threads accessing different parts of your map will not grab the same lock. Lock overhead will only be slow for multiple threads that pile up on a single common stripe. If this happens reduce the load factor (although if it's the same key then not much you can do). – reccles Sep 22 '11 at 15:50
show 1 more comment
feedback

The easiest implementation of a set would usually be to use an underlying map. They even have a Collections.newSetFromMap() method [maybe from 1.6 only].

What they should have done was have a CopyOnWriteMap and the CopyOnWriteSet being equivalent to Collections.newSetFromMap(new CopyOnWriteMap()).

But as you can see the CopyOnWriteArraySet is actually backed by an array not a map. And wouldn't Collections.newSetFromMap(ConcurrentHashMap()) be acceptable for your usecase?

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.