pub const DEFAULT_MAX_CONCURRENT_REQUESTS: usize = 20;Expand description
Conservative starting point: comfortably above the sqlx pool’s
max_connections default (10, cf. DB_POOL_MAX_CONNECTIONS) since a
single request typically issues several short, sequential queries rather
than holding one connection for its whole lifetime — see
unit_repository_impl.rs, which acquires per-call via &self.pool.