I am using a Parallel.Foreach for populating an external ConcurrentBag. I tried also to use a common List and everything works fine.
I have been lucky or I missed the special scope of ConcurrentBag?
|
I am using a Parallel.Foreach for populating an external ConcurrentBag. I tried also to use a common List and everything works fine. I have been lucky or I missed the special scope of ConcurrentBag? |
|||||
|
|
You have been lucky; According to MSDN,
ConcurrentBag is what you should use for this, which is thread-safe for multiple readers and writers. |
|||||
|
|
If you're using |
|||
|
|
|
ConcurrentBag is the correct answer, only in .NET 4.0 it is very slow. This has been fixed in .NET 4.5. See http://ayende.com/blog/156097/the-high-cost-of-concurrentbag-in-net-4-0 Both ConcurrentStack and ConcurrentQueue will also work in your situation... |
|||
|
|