I'm searching for documentation on how to write MP/MC queue to be lock-free or even wait-free. I'm using .Net 4.0. Found a lot of C++ code, but I'm not very familiar with memory models, so there is a big chance I will introduce some bugs while porting to C#.

link|improve this question

This thread might be a start: groups.google.com/group/comp.programming.threads/browse_thread/… – dlev May 20 '11 at 22:57
There is an excellent Java book on the topic: Java Concurreny in Practice. All the code samples are available on their [website][1], however, without the book the code might be difficult to understand if you are not familiar with the Java concurrency framework. [1]: javaconcurrencyinpractice.com – Stefan May 20 '11 at 23:00
feedback

2 Answers

up vote 3 down vote accepted

Why do you think you need lock-free queue? Have you tried using ConcurrentQueue<T>, possibly enclosed within a BlockingCollection<T>?

Writing multi-threaded code is hard. Writing lock-free code is even harder and you shouldn't do it yourself unless you really have to.

link|improve this answer
I'm writing general-purpose subsystem, so I just want to make it as good as possible. – adontz May 20 '11 at 23:08
@adontz, in that case, you should make your system extendable: you provide some implementation of concurrent queue that's good enough in most cases, but let your users write their own if they need it. – svick May 20 '11 at 23:18
Unfortunately (for me), primary use case is a high load, so lock-free is not more than "good enough". I'm not expected to implement a wait-free queue by default, however lock based solution is unacceptable. I'm not an enemy of myself, It is really needed to implement at least a lock-free queue. – adontz May 20 '11 at 23:40
1  
@adontz, do you need your queue to be really FIFO? If not and you expect that often the same thread both produces and consumes items, you can use ConcurrentBag<T>. In any case, all those collections try to use locking as little as possible, so I'm not sure your solution is going to be much better. – svick May 21 '11 at 0:02
the same thread will be producer and consumer rarely. – adontz May 21 '11 at 7:18
feedback

My first go would be with ConcurrentQueue<T> but you can abstract your data store away behind an interface so you can easily change implementations. Then benchmark typical scenarios and see where you run into problems. Remember: Premature optimzation is the root of all evil. Design your system so it's not tied to an implementation but to a contract and then you can optimize your implementations all you want.

I had a look at ConcurrentQueue<T> with ILSpy and seems to be a lock free implementation at first glance - so good chance it's exactly what your are looking for.

link|improve this answer
ConcurrentQueue<T> is just a piece of MPMC queue. It does not help in waiting for new item arrival, notifying of new item arrived. I think that one AutoResetEvent will be enough for this, was modeling different situations: producers working faster than consumers at some moment, consumers working faster than producer at some moment. False wake up is a problem too, thread should not wake up just to see empty queue. So there are a lot of places to make mistake. I am generally aware of multithreading, but definitely not a professional in this area. – adontz May 21 '11 at 7:58
@adontz, that's where BlockingCollection<T> is going to help you. It takes care of waiting for new items for consumers and waiting until there is free space in the queue, if you choose to limit its size, for producers. – svick May 21 '11 at 10:46
feedback

Your Answer

 
or
required, but never shown

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