Raise matching floor: boundary tokenizer, stemming/folding/stopwords, boosts, snippets, engine seam

This commit is contained in:
George Coles
2026-09-15 08:11:55 -04:00
parent 0d35036168
commit 382acc36a9
10 changed files with 294 additions and 42 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ fn thousand_file_corpus_is_searchable_and_honest() {
assert_eq!(matches, total as u64);
assert_eq!(hits.len(), 10);
let response = build_response("scale", response_items(&hits), matches, 10);
let response = build_response("scale", response_items(&hits), Some(matches), 10);
assert!(response.truncated);
assert_eq!(response.more_available, (total - 10) as u64);
assert!(serde_json::to_string(&response).unwrap().len() > 0);