vote up 1 vote down star
1

To recap for those .net gurus who might not know the Java api:

ConcurrentHashMap in Java has atomic methods (i.e. require no external locking) for common Map modification operations such as:

putIfAbsent(K key, V value)
remove(Object key, Object value)
replace(K key, V value)

It also allows iteration over the keyset without locking (it takes a copy at the start of iteration) and get() operations can generally be interleaved with calls to put() without blocking (it uses fine grained lock striping iirc).

Anyway, my question is does .net have an equivalent Dictionary implementation?

I guess more generally, I'd be keen to know if .net has a more general set of thread safe collection libraries. Or concurrency utlities in general - equivalent to doug Lea's java.util.concurrent libraries.

flag

75% accept rate
do you really need java tag here? – Georgy Bolyuba Nov 12 '08 at 10:25
Georgy - you're right - it is a .net question, not a Java one. Tag removed. – serg10 Nov 12 '08 at 10:51

3 Answers

vote up 2 vote down check

Not that I know of. The closest thing to what you're looking for would probably be the Synchronized method of the Hashtable, which returns a (sort of) thread-safe wrapper around the hashtable. It's only thread-safe for multiple writers or multiple readers, though. If I recall correctly, a mixture of writers and readers will not be thread-safe.

link|flag
vote up 2 vote down

I don't know of any equivalent to ConcurrentHashMap.

In terms of general concurrency utilities - .NET has always provided a bit more than the basics which Java used to provide, in terms of Mutex, ManualResetEvent, AutoResetEvent and ReaderWriterLock; then more recently (.NET 2.0) Semaphore and (.NET 3.5) ReaderWriterLockSlim - as well as the process-wide thread pool, of course.

A bigger shake-up will come in .NET 4.0 when Parallel Extensions arrives - that should make concurrency much simpler. Likewise the Coordination and Concurrency Runtime is finally breaking free of the shackles of the Microsoft Robotics Studio, although I'm not clear on exactly where it's headed (whether it'll be part of .NET itself, or a separate library).

link|flag
I was under the impression (from public MSDN blogs) that it was destined to be a core part of .NET 4.0 itself. – Marc Gravell Nov 12 '08 at 9:48
Thanks for you answer Jon. Parallel Extensions looks very interesting. Just to be clear - I am not trolling - this is not a "Java has better libraries than .net" rant. Am just new to .net and keen to see what is available out of the box. – serg10 Nov 12 '08 at 9:56
Marc: The CCR as part of .NET 4.0? Links would be welcome! Serg: Don't worry, I didn't take it that way :) – Jon Skeet Nov 12 '08 at 10:51
vote up 0 vote down

Personally, I find that having individual methods as synchronized generally isn't as useful as it sounds.

Commonly, you might want to do a related "get" and "put" in close succession, and if another thread is looking at the same values you have an immediate thread race. Likewise (depending on the scenario) you don't want somebody reading values that you are working on.

For a broad approach, simply using an external Monitor (lock(...) can work well for many situations. It is simple, light-weight, and unless you are under heavy thread load, more than adequate.

For more complex scenarios, things like ReaderWriterLockSlim etc are more flexible. But I'd start simple, and only change things if profiling shows there is a genuine contention issue.

As Jon notes, with Parallel Extension comes a a whole new slew of high performance synchronization devices; from what I can see (for example here, here and here), this is part of .NET 4.0

link|flag
In Java's ConcurrentHashMap, the individual get, replace, putIfAbsent, etc methods are not syncronised. They use non blocking algorithms to work without locking under most load situations. I'll take a look at ReaderWriterLockSlim - thanks for the tip. – serg10 Nov 12 '08 at 9:57

Your Answer

Get an OpenID
or

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