processing-parallel-tasks
Installation
SKILL.md
.NET Parallel Processing
A guide for APIs and patterns for parallel processing of CPU-bound tasks.
Quick Reference: See QUICKREF.md for essential patterns at a glance.
1. Core APIs
| API | Purpose |
|---|---|
Parallel.For, Parallel.ForEach |
CPU-bound parallel processing |
PLINQ (.AsParallel()) |
LINQ query parallelization |
Partitioner<T> |
Large data partitioning |
ConcurrentDictionary<K,V> |
Thread-safe dictionary |