v1.49.0
daydreamlive/DEMONv1.49.0Jul 6, 2026by Kerollmops
AI Summary
v1.49.0 focuses on performance optimization by improving synonyms storage with lazy loading, resulting in significant speed improvements, and fixes issues related to ranking scores and OpenAPI rule strictness.
Key Highlights
- Significant performance boost for synonyms, improving search speed by up to 13x through lazy loading.
- Fixed workflow issues that occurred after broken ranking scores.
- Relaxed OpenAPI rules for routes returning 202 status codes.
New Features
- Improved synonyms storage mechanism that loads synonyms lazily only when needed.
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