Post #2254521
2026-05-07 09:50 UTC
Other question : What's the modern choice of data store format for efficient full-text fuzzy search over some fields of a stored object ?
My data model consists of a huge set of objects with a couple of textual properties I need to fuzzy search on (especially regardless of accents). In 1/3 of the cases people will search only on one field, the other remaining percents will evenly share over all other properties.
#DuckDuckFedi #FollowerPower
Replies (2)
-
@maartje@blahaj.social 2026-05-07 09:55
@braid@alpaka.garden i used https://github.com/meilisearch/meilisearch in production, easy to use elasticsearch competitor in Rust for a low memory footprint
-
@dolanor@hachyderm.io 2026-05-07 12:55
@braid@alpaka.garden I feel that https://github.com/blevesearch/bleve could be something? And as it is Go, I guess the multiple accent normalizer (I don't remember the technical term) should be handled thanks to utf8 support.