Lock free stack and queue in C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T02:29:26Zhttp://stackoverflow.com/feeds/question/550616http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/550616/lock-free-stack-and-queue-in-c4Lock free stack and queue in C#Radu0942009-02-15T09:53:40Z2009-10-09T03:10:30Z
<p>Does anyone know if there are any lock-free container libraries available for .NET ?</p>
<p>Preferably something that is proven to work and faster than the Synchronized wrappers we have in .NET.</p>
<p>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.</p>
<p>Thanks </p>
http://stackoverflow.com/questions/550616/lock-free-stack-and-queue-in-c/550630#5506307Answer by Frederik Gheysels for Lock free stack and queue in C#Frederik Gheysels2009-02-15T10:04:29Z2009-02-15T10:04:29Z<p>Do you mean the container classes like they exist in the PFX framework (Parallels for .NET), ConcurrentQueue & ConcurrentStack</p>
<p><a href="http://blogs.msdn.com/pfxteam/archive/2008/08/12/8852005.aspx" rel="nofollow">Pfx blog</a></p>
http://stackoverflow.com/questions/550616/lock-free-stack-and-queue-in-c/587959#5879594Answer by Jason Short for Lock free stack and queue in C#Jason Short2009-02-25T21:31:04Z2009-02-25T21:31:04Z<p>Late, but better than never I thought I would add Julian Bucknalls articles to this list.</p>
<p>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).</p>
<p>His blog has a series of articles on lock free structures in C#. </p>
<p><a href="http://www.boyet.com/Articles/LockfreeStack.html" rel="nofollow">LOCK-FREE DATA STRUCTURES: THE STACK</a></p>
http://stackoverflow.com/questions/550616/lock-free-stack-and-queue-in-c/652553#6525530Answer by rama-jka toti for Lock free stack and queue in C#rama-jka toti2009-03-16T23:35:45Z2009-03-16T23:35:45Z<p>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.</p>
<p>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..</p>
http://stackoverflow.com/questions/550616/lock-free-stack-and-queue-in-c/1541613#15416130Answer by cdiggins for Lock free stack and queue in C#cdiggins2009-10-09T03:10:30Z2009-10-09T03:10:30Z<p>Without knowing anything about it, there is one library I stumbled across <a href="http://code.msdn.microsoft.com/RantPack" rel="nofollow">here</a>.</p>
<p>Though probably not quite what you are looking for, at least there is an implementation and discussion on StackOverflow of a <a href="http://stackoverflow.com/questions/1541510/is-this-lock-free-net-queue-thread-safe">lock free queue structure in C# here</a>. 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.</p>