vault / meilisearch / v1.19.1
meilisearch @ v1.19.1
integrity
- size
- 19.8 MiB
- downloaded
- last checked
release notes
🐛 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.
download
unix · zip
curl -fL -o v1.19.1.zip https://ratatoskr.space/pkg/meilisearch/v1.19.1.zip
printf '%s %s\n' 'da02a434d460e6c463d191889872cb8272c4e0c055adc876d4821da489c38755' 'v1.19.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.19.1.zip"
$out = "v1.19.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "da02a434d460e6c463d191889872cb8272c4e0c055adc876d4821da489c38755") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.19.1.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.19.1.tar.gz
printf '%s %s\n' '27baedc11beaed70ae40614418e24ff97ce08a087329c98e0dafac1d4466036a' 'v1.19.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.19.1.tar.gz"
$out = "v1.19.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "27baedc11beaed70ae40614418e24ff97ce08a087329c98e0dafac1d4466036a") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.19.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.19.1.zip
printf '%s %s\n' 'da02a434d460e6c463d191889872cb8272c4e0c055adc876d4821da489c38755' 'v1.19.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.19.1.zip"
$out = "v1.19.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "da02a434d460e6c463d191889872cb8272c4e0c055adc876d4821da489c38755") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.19.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.19.1.tar.gz
printf '%s %s\n' '27baedc11beaed70ae40614418e24ff97ce08a087329c98e0dafac1d4466036a' 'v1.19.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.19.1.tar.gz"
$out = "v1.19.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "27baedc11beaed70ae40614418e24ff97ce08a087329c98e0dafac1d4466036a") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.19.1.zip | zip | 19.7 MiB |
blake3-24 94914c237c56ecc9b603d8a1f8b4197f0b63dd9bc87ff88c
sha256 da02a434d460e6c463d191889872cb8272c4e0c055adc876d4821da489c38755
sha1 3f70f69373d2041fa97264ae3a3609d9c3dd6ca5
|
| v1.19.1.tar.gz | tar.gz | 18.9 MiB |
blake3-24 80b0c1997baaa0ae071390080c9896376894e98988181575
sha256 27baedc11beaed70ae40614418e24ff97ce08a087329c98e0dafac1d4466036a
sha1 bd4223845e07b838e77750b1adb61bb914a95c7e
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.19.1.tar.gz"],
integrity = "sha256-J7rtwRvq7XCuQGFEGOJP+XzgighzKcmODa+sHURmA2o=",
strip_prefix = "meilisearch-v1.19.1",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.19.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.19.1.tar.gz"],
integrity = "sha256-J7rtwRvq7XCuQGFEGOJP+XzgighzKcmODa+sHURmA2o=",
strip_prefix = "meilisearch-v1.19.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.19.1.tar.gz",