Download Latest Version v1.19.1 source code.tar.gz (19.8 MB)
Email in envelope

Get an email when there's a new version of Meilisearch

Home / v1.19.1
Name Modified Size InfoDownloads / Week
Parent folder
meilisearch-macos-apple-silicon 2025-08-26 122.2 MB
meilisearch-windows-amd64.exe 2025-08-26 126.8 MB
meilisearch-macos-amd64 2025-08-26 125.3 MB
meilisearch-linux-aarch64 2025-08-26 127.0 MB
meilisearch.deb 2025-08-26 84.8 MB
meilisearch-linux-amd64 2025-08-26 130.3 MB
meilisearch-openapi.json 2025-08-26 456.1 kB
README.md 2025-08-26 650 Bytes
v1.19.1 source code.tar.gz 2025-08-26 19.8 MB
v1.19.1 source code.zip 2025-08-26 20.8 MB
Totals: 10 Items   757.4 MB 4

🐛 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.

:::json
{
  "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.

Source: README.md, updated 2025-08-26