vault / meilisearch / v1.10.1
meilisearch @ v1.10.1
integrity
- size
- 15.3 MiB
- downloaded
- last checked
release notes
Fixes 🦋
Better search handling under heavy loads
All of the next PR should make meilisearch behave better under heavy loads:
- Only spawn one search queue in actix-web by @irevoire in https://github.com/meilisearch/meilisearch/pull/4893
- Make sure the index scheduler never stops running by @irevoire in https://github.com/meilisearch/meilisearch/pull/4896
- Explicitly drop the search permits by @irevoire in https://github.com/meilisearch/meilisearch/pull/4898
- Stop trying to process searches after one minute by @irevoire in https://github.com/meilisearch/meilisearch/pull/4899
Speed improvement 🐎
We made the autobatching of the document deletion with the document deletion by filter possible which should uncklog the task queue of the people using these two operations heavily. Meilisearch still cannot autobatch the document deletion by filter and the document addition, though.
- Autobatch document deletion by filter by @irevoire in https://github.com/meilisearch/meilisearch/pull/4901
- Do not fail the whole batch when a single document deletion by filter fails by @irevoire in https://github.com/meilisearch/meilisearch/pull/4905
Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.10.0...v1.10.1
download
unix · zip
curl -fL -o v1.10.1.zip https://ratatoskr.space/pkg/meilisearch/v1.10.1.zip
printf '%s %s\n' '84e2cfc8561189b86b309cafa43377258757f1e458345e5c371abb7f9f24b4b9' 'v1.10.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.10.1.zip"
$out = "v1.10.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "84e2cfc8561189b86b309cafa43377258757f1e458345e5c371abb7f9f24b4b9") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.10.1.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.10.1.tar.gz
printf '%s %s\n' 'c2d4a6b6cc10f910b72c994b879edecf56b407524e6d9cbf3162f77f00a82e08' 'v1.10.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.10.1.tar.gz"
$out = "v1.10.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c2d4a6b6cc10f910b72c994b879edecf56b407524e6d9cbf3162f77f00a82e08") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.10.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.10.1.zip
printf '%s %s\n' '84e2cfc8561189b86b309cafa43377258757f1e458345e5c371abb7f9f24b4b9' 'v1.10.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.10.1.zip"
$out = "v1.10.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "84e2cfc8561189b86b309cafa43377258757f1e458345e5c371abb7f9f24b4b9") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.10.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.10.1.tar.gz
printf '%s %s\n' 'c2d4a6b6cc10f910b72c994b879edecf56b407524e6d9cbf3162f77f00a82e08' 'v1.10.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.10.1.tar.gz"
$out = "v1.10.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c2d4a6b6cc10f910b72c994b879edecf56b407524e6d9cbf3162f77f00a82e08") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.10.1.zip | zip | 15.3 MiB |
blake3-24 a6b1ae05b0ad9f4a71c5a9539c119eba3a93bc0b4f6852ad
sha256 84e2cfc8561189b86b309cafa43377258757f1e458345e5c371abb7f9f24b4b9
sha1 ae65d8f4224772de0367b9a4aed06c732d49dbae
|
| v1.10.1.tar.gz | tar.gz | 14.7 MiB |
blake3-24 e2f284fcc1847cce6996a49a4d417e5aab28564415a02e52
sha256 c2d4a6b6cc10f910b72c994b879edecf56b407524e6d9cbf3162f77f00a82e08
sha1 6189a214bc22bbefe50c0bda4eef7f73b477aa20
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.10.1.tar.gz"],
integrity = "sha256-wtSmtswQ+RC3LJlLh57ez1a0B1JObZy/MWL3fwCoLgg=",
strip_prefix = "meilisearch-v1.10.1",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.10.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.10.1.tar.gz"],
integrity = "sha256-wtSmtswQ+RC3LJlLh57ez1a0B1JObZy/MWL3fwCoLgg=",
strip_prefix = "meilisearch-v1.10.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.10.1.tar.gz",