Im using Generic.Queue in C# 3.0 and Monitor.Enter,wait,exit for wait before consuming the queue (wait for the element to be enqueued). Now im moving to C# 4.

Can anyone suggest me which one is fast and best especially to avoid locks..

BlockingCollection vs concurrentQueue or any thing else...

Note. I dont want to restrict my producer

Thanks in advance..

link|improve this question
feedback

2 Answers

BlockingCollection and ConcurrentQueue are there for precisely this reason. I doubt that you'll find anything better, or simpler to use. The parallel extensions team know their stuff :)

Just a quick check on versions though - you're definitely using .NET 4, not just C# 4? (For example, you could be using Visual Studio 2010 and thus C# 4, but still targeting .NET 3.5, in which case you couldn't use Parallel Extensions.)

You may also want to start researching Task-Based Asynchronous Pattern, TPL Dataflow and the async/await features of C# 5... obviously you can't use them just yet, but it doesn't hurt to know what's coming up.

link|improve this answer
BlockingCollection and ConcurrentQueue which one is fast and best – MSK Feb 15 '11 at 8:11
@MSK: You create a ConcurrentQueue and then wrap it in a BlockingCollection which coordinates the Add/Take methods. (You then let it manage the queue completely - you shouldn't touch the ConcurrentQueue directly yourself afterwards.) – Jon Skeet Feb 15 '11 at 8:13
Thank u.. Pls suggest me BlockingCollection/ConcurrentQueue which one is fast and best – MSK Feb 15 '11 at 8:13
Thank U so much – MSK Feb 15 '11 at 8:15
@MSK: Did you actually read my comment? You use the two types together. Create a ConcurrentQueue, and then create a BlockingCollection to wrap it. Then use the BlockingCollection exclusively. (In fact, if you just create a BlockingCollection without passing anything to the constructor, it will create a ConcurrentQueue for you, but you ought to understand what's going on.) – Jon Skeet Feb 15 '11 at 8:16
show 8 more comments
feedback

Here's a nice writeup of this common scenario on CodeThinked

link|improve this answer
Hope Justin Etheridge would speak up, so he can get a well-deserved bump. – GregC Mar 11 '11 at 20:40
Great article. Exactly what I was looking for. – starskythehutch Apr 10 at 21:01
feedback

Your Answer

 
or
required, but never shown

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