Hi everyone,
I’m working on a high-performance C# application that needs to take full advantage of a Xeon 48-Core processor for parallel processing and multi-threading. While I’ve used Task Parallel Library (TPL) and Parallel.ForEach before, I’m wondering if there are better ways to optimize performance on such a high-core-count CPU.
Task Parallel Library (TPL)
Parallel.ForEach
A few questions I have:
ThreadPool
.NET’s built-in parallelism
If anyone has experience optimizing .NET applications on high-core Xeon processors, I’d love to hear your insights!
Thanks in advance. ??