Add default parallel table

This commit is contained in:
Mike Solomon
2025-01-16 10:23:12 -08:00
parent 8dd6b15c0d
commit c4476ed316

View File

@@ -26,4 +26,18 @@ The following command will run the `DependencyVulnerabilityCheck` recipe against
```bash
mod run . --recipe DependencyVulnerabilityCheck --parallel -1
```
```
## Defaults
Below is a table showing what the default parallelization setting is for various commands:
| Variation | Default behavior without explicit `--parallel` |
|-----------------------------------|----------------------------------------------------------------------|
| `mod run --recipe` | Sequential. In a future release, this will likely change to opt-out. |
| `mod run --active-recipe` | Parallel |
| `mod run --streaming` | Parallel |
| `mod config recipes moderne sync` | Parallel |
| `mod config recipes jar install` | Sequential. In a future release, this will likely change to opt-out. |
| `mod build` | Sequential |
| `mod build --download-only` | Parallel |