Work In Progress Rust
A Rust developer at Meilisearch presents techniques for deferring error handling during development, such as using `unwrap` and `clone` to bypass compilation errors temporarily, and relying on CI with…
A Rust developer at Meilisearch presents techniques for deferring error handling during development, such as using `unwrap` and `clone` to bypass compilation errors temporarily, and relying on CI with…
A developer introduced the Hybrid Retrieval pattern, which combines semantic vector search with keyword-based BM25 search using Reciprocal Rank Fusion (RRF) to improve retrieval precision. The pattern…
This article provides a tutorial on building a semantic search API in Go using the Fiber web framework and Meilisearch, a typo-tolerant search engine. The architecture includes filter support, configu…
To build a production-ready Retrieval-Augmented Generation (RAG) pipeline in Python using BM25 retrieval via Meilisearch instead of a vector database, arguing that BM25 achieves 85–95% of the recall o…