2026-08-23 00:33:53 -04:00
|
|
|
//! The counterweight to `indexprobe`: every FTS write-side knob buys
|
|
|
|
|
//! indexing time by leaving more segments behind, and a segment is a
|
|
|
|
|
//! b-tree a query has to visit.
|
2026-08-21 02:05:23 -04:00
|
|
|
//!
|
|
|
|
|
//! ```text
|
|
|
|
|
//! cargo build -p quicksearch-core --example searchtime --release
|
|
|
|
|
//! ./target/release/examples/searchtime /path/to/index.db
|
|
|
|
|
//! ```
|
|
|
|
|
//!
|
2026-08-23 00:33:53 -04:00
|
|
|
//! Queries run against one held connection, as the worker holds one; each
|
|
|
|
|
//! is timed best-of-N so a scheduling hiccup is not the headline.
|
|
|
|
|
|
|
|
|
|
mod common;
|
2026-08-21 02:05:23 -04:00
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
use std::sync::atomic::AtomicU64;
|
|
|
|
|
use std::time::{Duration, Instant};
|
|
|
|
|
|
|
|
|
|
use quicksearch_core::query::split::split_for_cascade;
|
|
|
|
|
use quicksearch_core::search::{cascade, SearchHit, SearchOptions};
|
|
|
|
|
|
|
|
|
|
const RUNS: u32 = 5;
|
|
|
|
|
|
2026-08-23 00:33:53 -04:00
|
|
|
/// The content queries go through however many segments the write side
|
|
|
|
|
/// left behind; the filename query is the control and must not move.
|
2026-08-21 02:05:23 -04:00
|
|
|
const QUERIES: &[(&str, bool, &str)] = &[
|
|
|
|
|
("filename (control)", false, "doc42"),
|
|
|
|
|
("content, common", false, "mountain"),
|
|
|
|
|
("content, rare", false, "quartzite"),
|
|
|
|
|
("content, two words", false, "ocean forest"),
|
|
|
|
|
("fuzzy content", true, "mountian"),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let db = PathBuf::from(
|
|
|
|
|
std::env::args()
|
|
|
|
|
.nth(1)
|
|
|
|
|
.expect("usage: searchtime <index.db>"),
|
|
|
|
|
);
|
|
|
|
|
let conn = quicksearch_core::db::open::open_search_reader(&db.to_string_lossy())
|
|
|
|
|
.expect("open the index");
|
2026-08-23 00:33:53 -04:00
|
|
|
// Override the cache ceiling: working set too big, or index too big?
|
2026-08-21 02:05:23 -04:00
|
|
|
if let Ok(kib) = std::env::var("QSB_CACHE_KIB") {
|
|
|
|
|
conn.execute_batch(&format!("PRAGMA cache_size = -{};", kib.trim()))
|
|
|
|
|
.expect("set cache_size");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let segments: i64 = conn
|
|
|
|
|
.query_row("SELECT COUNT(*) FROM searchabletext_idx", [], |r| r.get(0))
|
|
|
|
|
.unwrap_or(-1);
|
|
|
|
|
let rows: i64 = conn
|
|
|
|
|
.query_row("SELECT COUNT(*) FROM files", [], |r| r.get(0))
|
|
|
|
|
.unwrap_or(-1);
|
|
|
|
|
println!(
|
|
|
|
|
"{} ({} rows, {} segment-index entries)",
|
|
|
|
|
db.display(),
|
|
|
|
|
rows,
|
|
|
|
|
segments
|
|
|
|
|
);
|
|
|
|
|
println!("{:<22} {:>10} {:>8}", "query", "best", "hits");
|
|
|
|
|
|
|
|
|
|
let mut total = Duration::ZERO;
|
|
|
|
|
for (label, fuzzy, query) in QUERIES {
|
|
|
|
|
let split = split_for_cascade(query).expect("query parses");
|
2026-08-23 00:33:53 -04:00
|
|
|
// The display limit makes this unfair: `scan_pass` stops when the
|
|
|
|
|
// limit fills, and candidates stream in insertion order, so which
|
|
|
|
|
// documents drew low ids changes bytes read 13x. A limit past the
|
|
|
|
|
// corpus makes every index do equal work.
|
2026-08-21 02:05:23 -04:00
|
|
|
let limit = std::env::var("QSB_LIMIT")
|
|
|
|
|
.ok()
|
|
|
|
|
.and_then(|v| v.parse().ok())
|
|
|
|
|
.unwrap_or(1000);
|
|
|
|
|
let options = SearchOptions {
|
|
|
|
|
fuzzy: *fuzzy,
|
|
|
|
|
limit,
|
|
|
|
|
..SearchOptions::default()
|
|
|
|
|
};
|
|
|
|
|
let mut best = Duration::MAX;
|
|
|
|
|
let mut hits = 0usize;
|
2026-08-23 00:33:53 -04:00
|
|
|
// Time varying while `rchar` does not means waiting on the disk.
|
|
|
|
|
let io_before = common::Io::read();
|
2026-08-21 02:05:23 -04:00
|
|
|
for _ in 0..RUNS {
|
|
|
|
|
let latest = AtomicU64::new(1);
|
|
|
|
|
let mut count = 0usize;
|
|
|
|
|
let mut sink = |h: Vec<SearchHit>| count += h.len();
|
|
|
|
|
let start = Instant::now();
|
|
|
|
|
cascade::run(&conn, &split, &options, 1, &latest, &mut sink).expect("cascade runs");
|
|
|
|
|
best = best.min(start.elapsed());
|
|
|
|
|
hits = count;
|
|
|
|
|
}
|
|
|
|
|
total += best;
|
2026-08-23 00:33:53 -04:00
|
|
|
let io = common::Io::read().since(&io_before);
|
2026-08-21 02:05:23 -04:00
|
|
|
println!(
|
|
|
|
|
"{:<22} {:>10.1?} {:>8} disk-read {:>8.1} MiB rchar {:>8.1} MiB (over {} runs)",
|
|
|
|
|
label,
|
|
|
|
|
best,
|
|
|
|
|
hits,
|
2026-08-23 00:33:53 -04:00
|
|
|
io.read_bytes as f64 / 1048576.0,
|
|
|
|
|
io.rchar as f64 / 1048576.0,
|
2026-08-21 02:05:23 -04:00
|
|
|
RUNS,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
println!("{:<22} {:>10.1?}", "TOTAL", total);
|
|
|
|
|
}
|