v1.49.0
aiola-lab/draxv1.49.0Jul 6, 2026by Kerollmops
AI Summary
This release focuses on optimizing search performance, specifically by improving how synonyms are stored and retrieved to handle high volumes more efficiently. It introduces a lazy loading mechanism for synonyms that can result in up to 13x performance improvements. Additionally, the update includes minor fixes for workflow issues and adjustments to OpenAPI compliance.
Key Highlights
- Synonyms storage optimized with lazy loading for up to 13x performance improvement
- Fixed workflow issues related to broken ranking scores
- OpenAPI rules relaxed for routes returning status 202
New Features
- Lazy loading mechanism for synonyms to improve query performance
Full Release Notes
### ✨ Enhancement
- Improve the synonyms storage by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6466
We improve synonyms' performance by changing how we store and retrieve them during query processing. Users may have experienced performance issues when the number of synonyms in an index was high, resulting in a significant impact on search performance. The Meilisearch support team advised moving the settings and synonyms-as-keywords to the dedicated documents. This is no longer an issue; synonyms are loaded lazily, only when a word matches a synonym. You can see performance improvements of up to 13x, depending on the number of synonyms.
### 🔩 Miscellaneous
- Fix the workflow after broken ranking scores by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6470
- Make OpenAPI rule less strict for routes returning 202 by @curquiza in https://github.com/meilisearch/meilisearch/pull/6488