I am able to sort my ConcurrentDictionary by value like so:

static ConcurrentDictionary<string, Proxy> Proxies = 
    new ConcurrentDictionary<string, Proxy>();

Proxies.OrderBy(p => p.Value.Speed);

Which is great, except I want to set that new re-ordered list AS the dictionary, effectively sorting the dictionary itself rather than just receiving a result list of sorted items.

I try to do something like this but had no luck - the dictionary is still unordered after:

Proxies = new ConcurrentDictionary<string,Proxy>(
    Proxies.OrderBy(p => p.Value.Speed));

It seems like doing that has no effect on the dictionary. I also tried casting the OrderBy result to a new var thinking that it may have an effect on the delegate but still no luck.

How can I re-order this ConcurrentDictionary and then force the dictionary to be the re-ordered result from OrderBy?

link|improve this question
feedback

5 Answers

up vote 3 down vote accepted

Simple dictionaries are not sorted collections. They are merely a collection which maps keys to values. ConcurrentDictionary is no different.

You'd instead need a SortedConcurrentDictionary (akin to SortedDictionary), however, this data structure does not exist.

As for if you actually require a sorted "dictionary", we'd need to hear more about your use case. Is this a faux priority queue? Could you simply use a ConcurrentBag<Proxy> and perform ordering after the fact?

If you need to take the collection and in a downstream parallel method use the proxies in sorted order, I suggest taking a look at creating a custom Partitioner, potentially borrowing from the MSDN example of an OrderablePartitioner.

link|improve this answer
The dictionary was only being used to prevent duplicate values from being added. Previously, I was simply using a List<Proxy> and checking if the values existed before adding. I could use a ConcurrentBag<Proxy> but that would require using two separate lists as I keep an actively visible and maintained view of the proxies in a ListView, allowing the proxies to be seen/managed/etc. The previous implementation of the List<proxy> with locking mechanisms was working fairly well until I reached a bug recently with null items being present, so I tried switching to a ConcurrentBag/Dictionary/etc... – user1111380 Dec 22 '11 at 19:47
So it sounds like you needed a concurrent HashSet, which the ConcurrentBag isn't as you found. Is this concurrent because another thread comes by and updates it? – sixlettervariables Dec 22 '11 at 19:50
Rgiht, I'm using multiple threads to check the proxies and update the list accordingly. – user1111380 Dec 22 '11 at 19:54
1  
Just so nobody else spends 2 hours implementing a HashSet<T> and then a List<T> to act as the 'sorted' viewer: .NET 4.0 added a 'SortedSet<T>' which is a sorted HashSet. /smash-face-on-keyboard – user1111380 Dec 22 '11 at 21:43
feedback

A dictionary, especially ConcurrentDictionary, is essentially unsorted.

If you need a sorted collection, you'll need to store the values in some other type, such as a SortedDictionary<T,U>.

link|improve this answer
I was hoping to utilize the built-in .NET concurrency offered by the ConcurrentDictionary, though. I can see this is not possible while offering sorted capabilities. Back to using lock() statements... thanks. – user1111380 Dec 22 '11 at 19:31
1  
@user1111380 Just be careful - ordering and concurrent collections usually conflict... Typically, (when possible) it's a good idea to keep your data in a concurrent collection while working on it, then extract the items in a specific order to present results, etc. – Reed Copsey Dec 22 '11 at 19:32
feedback

ConcurrentDictionary, just like Dictionary, doesn't know the concept of sorting, i.e. it doesn't contain any ordering information. The result of OrderBy() has a specific order, but when assigned to Proxies the order information is lost.

Note that there are sorted implementations of IDictionary, namely SortedDictionary and SortedList.

link|improve this answer
feedback

ConcurrentDictionary, as most dictionaries, is unordered; you cannot modify it so it is sorted. You'll have to create your own dictionary class that provides you both concurrency and sorting. One starting point could be SortedDictionary<>.

link|improve this answer
I was hoping to utilize the built-in .NET concurrency offered by the ConcurrentDictionary, though. I can see this is not possible while offering sorted capabilities. Back to using lock() statements... thanks. – user1111380 Dec 22 '11 at 19:32
feedback

The solution is to use a SortedSet<T>, discovered after many hours of research and code revision. A sorted set offers the unique-ness of a Dictionary or HashSet, but also allows sorting - neither a Dictionary nor a HashSet allow sorting.

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.