My team is currently debating this issue.

The code in question is something along the lines of

if (!myDictionary.ContainsKey(key))
        {
            lock (_SyncObject)
            {
                if (!myDictionary.ContainsKey(key))
                {
                    myDictionary.Add(key,value);
                }
            }
        }

Some of the posts I've seen say that this may be a big NO NO (when using TryGetValue). Yet members of our team say it is ok since "ContainsKey" does not iterate on the key collection but checks if the key is contained via the hash code in O(1). Hence they claim there is no danger here.

I would like to get your honest opinions regarding this issue.

link|improve this question

56% accept rate
you may want to check out ConcurrentDictionary. – chillitom May 16 '11 at 14:22
1  
Just a detail but you probably mean !ContainsKey() – Henk Holterman May 16 '11 at 14:25
Have you found efficiency problems from locking the whole dictionary? – Nick May 16 '11 at 14:29
the dictionary will be used as a static cache. so this check is do for each instance creation. so thats a lot of locking... – Amir May 16 '11 at 14:33
But have you actually found any efficiency problems? It's sometimes better not to worry about problems until they occur. – Nick May 16 '11 at 14:51
feedback

4 Answers

up vote 8 down vote accepted

Don't do this. It's not safe.

You could be calling ContainsKey from one thread while another thread calls Add. That's simply not supported by Dictionary<TKey, TValue>. If Add needs to reallocate buckets etc, I can imagine you could get some very strange results, or an exception. It may have been written in such a way that you don't see any nasty effects, but I wouldn't like to rely on it.

It's one thing using double-checked locking for simple reads/writes to a field, although I'd still argue against it - it's another to make calls to an API which has been explicitly described as not being safe for multiple concurrent calls.

If you're on .NET 4, ConcurrentDictionary is probably the way forward. Otherwise, just lock on every access.

link|improve this answer
What if this code is accessed a lot within the application? Then that might be a performance issue. Any other way to do this besides ConcurrentDictionary? – Amir May 16 '11 at 14:34
1  
@Amir: I'd rather suffer a tiny amount of performance loss than have the application blow up. Have you profiled the application to see whether this is causing an actual performance issue? Uncontested locks are cheap: don't start trying to roll your own lock-free code without proving that you really need it. – Jon Skeet May 16 '11 at 14:36
Am i correct to assume that if i go with a lock on access instead of DCL then i will need to lock every access in every method to this dictionary? – Amir May 16 '11 at 14:40
2  
@Amir: Yes. You could potentially use ReaderWriterLockSlim to allow concurrent readers, but I'd just try locking on every access first, and profile your application to see whether it's a problem. – Jon Skeet May 16 '11 at 14:42
feedback

If you are in a multithreaded environment, you may prefer to look at using a ConcurrentDictionary. I blogged about it a couple of months ago, you might find the article useful: http://colinmackay.co.uk/blog/2011/03/24/parallelisation-in-net-4-0-the-concurrent-dictionary/

link|improve this answer
What is an ample solution to this issue if using .Net 4.0 is not an option? (using 3.5) – Amir May 16 '11 at 14:29
Good alternative and article but it doesn't actually answer whether the proposed locking is "OK". – Rick Sladkey May 16 '11 at 14:33
feedback

This code is incorrect. The Dictionary<TKey, TValue> type does not support simultaneous read and write operations. Even though your Add method is called within the lock the ContainsKey is not. Hence it easily allows for a violation of the simultaneous read / write rule and will lead to corruption in your instance

link|improve this answer
feedback

It doesn't look thread-safe, but it would probably be hard to make it fail.

The iteration vs hash lookup argument doesn't hold, there could be a hash-collision for instance.

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.