//! Empirically tuned Rayon thresholds.
//!
//! See `docs/PARALLELIZATION.md` for the Wave 6 measurement notes.
/// `build_plan_queries` pays an up-front schema-preparation cost before the
/// per-action Rayon phase. It did not win through 1,000 actions, so ordinary
/// plans stay sequential and only very large plans attempt the parallel path.
/// Override via `VESPERTIDE_PLAN_QUERY_PAR_THRESHOLD` in tests.
pub
pub const PLAN_QUERY_PAR_ACTION_MIN_LEN: usize = 8;