vault / meilisearch / v1.52.0
meilisearch @ v1.52.0
integrity
- size
- 20.3 MiB
- downloaded
- last checked
release notes
✨ Enhancement
- Introduce the
/tasks/streamand/batches/streamSSE routes by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6533 This experimental feature allows establishing a live connection to the engine, avoiding the need to implement long polling and instead letting the engine provide new tasks, batches, and batch progress in a push-based manner. Using this route can drastically reduce network load when retrieving the status of a Meilisearch instance. - Speed up the search speed a bit more by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6542
We improve the search speed when it comes to formatting the documents by making an
O(n)operation, wherenis the number of retrieved documents, become anO(1)operation. This improvement can significantly increase search speed when requesting a large (> 20) number of documents.
🪲 Bug fixes
- Fix duplicate pins in federated search by @dureuill in https://github.com/meilisearch/meilisearch/pull/6543
- Skip the settings when nothing changes by @Kerollmops in https://github.com/meilisearch/meilisearch/pull/6544
download
unix · zip
curl -fL -o v1.52.0.zip https://ratatoskr.space/pkg/meilisearch/v1.52.0.zip
printf '%s %s\n' 'baf34e32171794d3711a0ea29171ede2b0c958ab0edef5f9fa90deb85eee0ac5' 'v1.52.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.52.0.zip"
$out = "v1.52.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "baf34e32171794d3711a0ea29171ede2b0c958ab0edef5f9fa90deb85eee0ac5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.52.0.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.52.0.tar.gz
printf '%s %s\n' '287f8d44fe7a803aaaadeab2c68b57c1b2a4acd127228d1de7cf13b2611b2b71' 'v1.52.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.52.0.tar.gz"
$out = "v1.52.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "287f8d44fe7a803aaaadeab2c68b57c1b2a4acd127228d1de7cf13b2611b2b71") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.52.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.52.0.zip
printf '%s %s\n' 'baf34e32171794d3711a0ea29171ede2b0c958ab0edef5f9fa90deb85eee0ac5' 'v1.52.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.52.0.zip"
$out = "v1.52.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "baf34e32171794d3711a0ea29171ede2b0c958ab0edef5f9fa90deb85eee0ac5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.52.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.52.0.tar.gz
printf '%s %s\n' '287f8d44fe7a803aaaadeab2c68b57c1b2a4acd127228d1de7cf13b2611b2b71' 'v1.52.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.52.0.tar.gz"
$out = "v1.52.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "287f8d44fe7a803aaaadeab2c68b57c1b2a4acd127228d1de7cf13b2611b2b71") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.52.0.zip | zip | 20.3 MiB |
blake3-24 6f5fc72e7116614df66369fbe273a6b7cd17f9baee21bc83
sha256 baf34e32171794d3711a0ea29171ede2b0c958ab0edef5f9fa90deb85eee0ac5
sha1 d8dee237db0e8bcecd14d0e76233bdfda70ff8a3
|
| v1.52.0.tar.gz | tar.gz | 19.4 MiB |
blake3-24 2b67dd98eab0703171689b0c6e242a8a763ecb4deaec8044
sha256 287f8d44fe7a803aaaadeab2c68b57c1b2a4acd127228d1de7cf13b2611b2b71
sha1 65a5bd4ccd97014c9416fff8fdd8b92eda3d5f58
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.52.0.tar.gz"],
integrity = "sha256-KH+NRP56gDqqreqyxotXwbKkrNEnIo0d588TsmEbK3E=",
strip_prefix = "meilisearch-v1.52.0",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.52.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.52.0.tar.gz"],
integrity = "sha256-KH+NRP56gDqqreqyxotXwbKkrNEnIo0d588TsmEbK3E=",
strip_prefix = "meilisearch-v1.52.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.52.0.tar.gz",