pub const SQLITE_BUSY_BASE_DELAY_MS: u64 = 300;Expand description
Base delay in milliseconds for the first SQLITE_BUSY retry.
Each subsequent attempt doubles the delay (exponential backoff): 300 ms → 600 ms → 1200 ms → 2400 ms → 4800 ms (≈ 9.3 s total).