meilisearch/MeiliSearch
 Watch   
 Star   
 Fork   
4 days ago
MeiliSearch

v1.23.0 🐘

This release introduces a new compact route on the index routes, which appends a new compaction task to the queue. Meilisearch uses an LMDB environment by index, and indexes start to fragment after some time. We have noticed that the indexes generally have 30% fragmentation. By defragmenting the environment, we've seen large (2-4x) speed-ups in terms of search and indexation. This is primarily due to the reordering of the LMDB internal pages and the removal of scattered free pages throughout the file, thereby relocating the content to the beginning.

We also worked on parallelizing the post-processing of facets. We noticed that a lot of time was spent iterating over the prefixes of the index in a single-threaded loop. We redesigned this part of the indexation to make it multi-threaded. We have seen a 4x and 6x improvement in terms of time spent on this operation.

✨ Improvements

🦋 Bug Fixes

🔩 Miscellenaous

New Contributors

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.22.1...v1.23.0

11 days ago
MeiliSearch

v1.22.3 🐦‍🔥

This version contains a minor fix that affects remote federated search users. If you are not a remote federated search user, it is not necessary to migrate from v1.22.x.

🦋 Bugfixes

  • v1.22.2 raised the remote federated search timeout for waiting nodes from 5 to 30s. This version makes it configurable by setting the environment variable MEILI_EXPERIMENTAL_REMOTE_SEARCH_TIMEOUT_SECONDS to a positive integer value. Please note that no CLI flag or configuration entry is available. By @dureuill in https://github.com/meilisearch/meilisearch/pull/5932
17 days ago
MeiliSearch

v1.22.2 🐦‍🔥

🦋 Bugfixes

22 days ago
MeiliSearch

v1.22.1

🐛 Bug Fixes

  • use the latest version of zerometry that supports collection, lines and multi-lines (#5907) @irevoire
  • Delete oldest tasks first (#5906) @dureuill

❤️ Huge thanks to our contributors: @dureuill and @irevoire.

23 days ago
MeiliSearch

v1.22.0 🐦‍🔥

🚀 Enhancements

  • Introduce a new geo backend to store geojson and filter on polygon
    1. Make the _geojson field filterable
    2. Then send your documents with a _geojson field filled with a valid geojson
    3. Filter your documents with the new _geoPolygon filter, or the old _geoBoudingBox and _geoPoints filter

🐛 Bug Fixes

❤️ Huge thanks to our contributors: @nnethercott, @Kerollmops, @ManyTheFish, @dureuill and @irevoire.

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.21.0...v1.22.0

2025-09-15 17:47:52
MeiliSearch

v1.21.0

🚀 Enhancements

  • Introduce a new vector store backend for better performance, especially if using the binary quantization
    1. Enable the new vectorStoreSetting experimental feature
    2. Then change the vectorSetting index setting to "experimental" for the indexes where you want to try the new vector store
    • Done in #5767 by @Kerollmops
  • Add Persian support (update charabia to v0.9.7) (#5848) @ManyTheFish

🐛 Bug Fixes

  • Observing the progress trace during indexing no longer removes parts of the trace (#5884) @irevoire
  • Fix dumpless upgrade decoding error when upgrading with a rest embedder (#5886) @dureuill.
    • In case you had encountered the issue, use the dumpless upgrade to v1.21 to fix it.

❤️ Huge thanks to our contributors: @ja7ad, @agourlay, @Kerollmops, @ManyTheFish, @dureuill and @irevoire.

2025-09-08 16:50:48
MeiliSearch

v1.20.0 🦟

🚀 Enhancements

  • Display the progressTrace in in-progress batches (#5858) @shreeup

🐛 Bug Fixes

  • Send the version when returning prometheus metrics (#5876) @irevoire

🔒 Security

⚙️ Maintenance/misc

  • Fix scheduled CI failure (#5856) @arithmeticmean

❤️ Huge thanks to our contributors: @ManyTheFish, @arithmeticmean, @curquiza, @dureuill, @irevoire, @shreeup and dependabot[bot].

2025-08-26 19:43:23
MeiliSearch

v1.19.1 🪸

🐛 Performance improvements

Enhance hybrid search with filter performances

In previous versions of Meilisearch, mixing hybrid search with filters, as shown below, could multiply the search time by hundreds.

{
  "q": "hello world",
  "limit": 100,
  "filter": "tag=science"
  "hybrid": {
    "semanticRatio": 0.5,
    "embedder": "default"
  }
}

Meilisearch will now directly compute the semantic distance with the filtered candidates if only a few candidates come from the filter, instead of searching for the closest embeddings matching the filter in the vector database.

2025-08-25 15:03:27
MeiliSearch

v1.19.0

🚀 Enhancements

  • Sharding and EE license (#5784) @dureuill

🐛 Bug Fixes

  • Takes the allowed max memory of the container when computing the max memory to use (#5729) @martin-g

❤️ Huge thanks to our contributors: @Kerollmops, @dureuill and @martin-g.

2025-08-18 19:34:53
MeiliSearch

v1.18.0 🕷️

🚀 Enhancements

  • Return queryVector in the search response when using retrieveVectors (#5778) @Mubelotix
  • Allow retrieving documents with vectors from specific embedders (#5741) @Mubelotix
  • Support renaming indexes using the API (#5829) @irevoire

❤️ Huge thanks to our contributors: @Kerollmops, @Mubelotix, @irevoire and @qdequele.