Add title stemming to typesense (#5553)

This commit is contained in:
aecsocket
2026-03-13 17:03:54 +00:00
committed by GitHub
parent f918df2d7a
commit 455a4f527d

View File

@@ -491,7 +491,7 @@ impl Typesense {
let mut fields = vec![
json!({"name": "summary", "type": "string", "facet": false}),
json!({"name": "slug", "type": "string", "facet": false}),
json!({"name": "indexed_title", "type": "string", "facet": false}),
json!({"name": "indexed_title", "type": "string", "facet": false, "stem": true}),
json!({"name": "indexed_author", "type": "string", "facet": false}),
json!({"name": "log_downloads", "type": "float", "sort": true}),
json!({"name": "follows", "type": "int32", "facet": true, "sort": true}),