22.2 Concurrency vs. True Parallelism

While concurrency and parallelism often go together, they’re not identical:

  • Concurrency: Multiple tasks overlap in time (even on a single core, via OS scheduling).
  • Parallelism: Tasks truly run simultaneously on different cores or hardware threads.

A program can be concurrent on a single-core system (through scheduling) without being parallel. Conversely, multi-core systems can run tasks in parallel, improving performance for CPU-bound workloads. In Rust, whether tasks actually run in parallel depends on the available hardware, the operating system’s scheduler, and your workload.

Rust supports concurrency in two main ways:

  1. Threads: Each Rust thread maps to an OS thread, suitable for CPU-bound or long-lived tasks that can benefit from true parallel execution.
  2. Async Tasks: Ideal for large numbers of I/O-bound tasks. They are cooperatively scheduled and switch at await points, typically running on a small pool of OS threads.

For data-level parallelism, libraries like Rayon can split workloads (e.g., array processing) across threads automatically.