up vote 11 down vote favorite
2
share [g+] share [fb]

Does anyone know if there are any lock-free container libraries available for .NET ?

Preferably something that is proven to work and faster than the Synchronized wrappers we have in .NET.

I have found some articles on the .NET, but none of them specify any speed benchmarking, nor do they inspire much confidence in their reliability.

Thanks

link|improve this question

1  
Please follow up and post any performance related data you may have found on the lock free structures you might have tested. – Jason Short Feb 25 '09 at 21:31
1  
We ended-up rolling our own containers, largelly based from boyet.com/index.html. Using lock-free versus standard containers we had a marginal (on average) decrease of ~12% of the total time needed to process our sample batch. All in all I would say it was not worth the effort :-( – Radu094 Apr 27 '09 at 7:14
feedback

5 Answers

up vote 6 down vote accepted

Late, but better than never I thought I would add Julian Bucknalls articles to this list.

But he does not have performance numbers. In my testing of his structures the list scaled well compared to locking (very low kernel usage compared to ReaderWriterLock).

His blog has a series of articles on lock free structures in C#.

LOCK-FREE DATA STRUCTURES: THE STACK

link|improve this answer
Kernel usage has nothing to do with CAS that he is utilising. CAS is a heavyweight hammer but in CLR you pretty much don't have many options, for now. – rama-jka toti Mar 16 '09 at 23:30
CAS is light on kernel time compared to ReaderWriterLock. Compare the two in loops. One will use all user space time, the other all kernel time. – Jason Short Mar 23 '09 at 16:30
You can't actually do a lock-free stack, unless you know, a priori, that your elements will not be deleted. C# I believe does garbage collection (which takes away some of the point of using lock-free!) so you get away with it. But in C, I believe that stack is broken, with the normal bug in pop. – Blank Xavier Apr 1 '09 at 21:15
BTW, my comment about the stack being broken is utterly wrong. – Blank Xavier Oct 17 '09 at 10:17
1  
@Blank Xavier. Not utterly. If you were to do a naïve port to C or C++ it would be broken, and it would be hard to do a "proper" port because you've got to find some way to handle what the C# can depend on the GC handling. So yes, your comment was wrong, but not "utterly" wrong as it does address an important point about what runtime conditions the algorithm depends on. – Jon Hanna Aug 31 '10 at 12:11
show 2 more comments
feedback

Do you mean the container classes like they exist in the PFX framework (Parallels for .NET), ConcurrentQueue & ConcurrentStack

Pfx blog

link|improve this answer
PFX looks good, but the documentation would seem to imply that ConcurrentQueue and ConcurrentStack use locks to provide thread-safety – Radu094 Feb 15 '09 at 12:32
I'd avoid PFX at all costs. We saw an 8-fold (that's right) degradation before realising it really isn't going to give you anything a good book will not teach you to do better.. – rama-jka toti Mar 16 '09 at 23:33
@Radu094: Joe Duffy's book "Concurrent Programming on Windows" states that the ConcurrentQueue is currently lock free. @rama-jka toti: The stuff in .NET 4 is much better than the CTP's were but I haven't tested the lock free data structures against alternatives. They are still much slower than their thread-unsafe counterparts, of course. – Jon Harrop Jun 15 '10 at 19:13
feedback

Without knowing anything about it, there is one library I stumbled across here.

Though probably not quite what you are looking for, at least there is an implementation and discussion on StackOverflow of a lock free queue structure in C# here. Going through the StackOverflow code review process might give some confidence about its safety, or provide information about how to go about building your lock-free containers yourself.

link|improve this answer
feedback

Lock free data structures are going to have issues until they modify the CLR with the mess caused by memory models, see the CLI spec.

Lock-free programming is sufficiently difficult that you shouldn't bother with it on a collection (container) level btw. True for any language out there..

link|improve this answer
2  
Can you elaborate on "modify the CLR"? What do you think is wrong? – Jon Harrop Jun 15 '10 at 19:13
feedback

http://www.liblfds.org

Written in C, but I'm guessing it's easily enough ported to C#?

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.