vote up 4 vote down star
1

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

flag

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 at 21:31
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 at 7:14

5 Answers

vote up 4 vote down check

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|flag
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 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 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 at 21:15
BTW, my comment about the stack being broken is utterly wrong. – Blank Xavier Oct 17 at 10:17
vote up 7 vote down

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

Pfx blog

link|flag
PFX looks good, but the documentation would seem to imply that ConcurrentQueue and ConcurrentStack use locks to provide thread-safety – Radu094 Feb 15 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 at 23:33
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag
vote up 0 vote down

http://www.liblfds.org

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

link|flag

Your Answer

Get an OpenID
or

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