Reputation: 35905
In .NET 4 it is possible to enable concurrent GC.
Q1 How does it work with parallel computations: Parallel
, Task
, PLINQ etc?
Q2 As a software developer what shall I be aware of when working with concurrent GC?
Upvotes: 10
Views: 317
Reputation: 564413
That being said, in .NET 4, the new "Background GC" was added. There is a detailed post describing this here as well as this Channel 9 video.
Upvotes: 9