yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/meilisearch/v0.26.0
vault / meilisearch / v0.26.0

meilisearch @ v0.26.0

integrity

size
7.1 MiB
downloaded
last checked
source https://github.com/meilisearch/meilisearch · available · github

release notes

For more information on how to update to the latest version of Meilisearch, read our dedicated guide.

New features

Tenant tokens

We released one of the features most requested by our users: tenant tokens. (https://github.com/meilisearch/meilisearch/pull/2096) @ManyTheFish

Tenant tokens allow developers to restrict access to documents depending on the end-user making the search request, effectively enabling multi-tenant indexes.

A tenant token is a JWT. It must be generated by combining an API key with a set of permissions and rules the developer wishes to apply to an end user's search.

For more information on tenant tokens, read our dedicated guide.

Auto-batching (experimental)

This version includes the auto-batching feature. (https://github.com/meilisearch/meilisearch/pull/2005) @MarinPostma

Auto-batching improves indexing speed by batching together consecutive document additions.

Here is a simple way to use it:

meilisearch --enable-auto-batching

This is an experimental feature. Based on user feedback, it might be completely reworked or outright removed in a future release.

You can read more about how to use auto-batching in this discussion.

Breaking changes

Enhancements

Fixes

Misc


❤️ Thanks again to our external contributors:

download

unix · zip
curl -fL -o v0.26.0.zip https://ratatoskr.space/pkg/meilisearch/v0.26.0.zip
                    printf '%s  %s\n' 'f4d60d0af58287b1140f5d403f8227e9750cb36e008a9e514988d68f4c44ee97' 'v0.26.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v0.26.0.zip"
$out = "v0.26.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f4d60d0af58287b1140f5d403f8227e9750cb36e008a9e514988d68f4c44ee97") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.26.0.tar.gz https://ratatoskr.space/pkg/meilisearch/v0.26.0.tar.gz
                    printf '%s  %s\n' '436c90aa6373ac40ae4b68af3d7d038a5bc6109ca49e5b66fb535faaf8e32751' 'v0.26.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v0.26.0.tar.gz"
$out = "v0.26.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "436c90aa6373ac40ae4b68af3d7d038a5bc6109ca49e5b66fb535faaf8e32751") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v0.26.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.26.0.zip
                    printf '%s  %s\n' 'f4d60d0af58287b1140f5d403f8227e9750cb36e008a9e514988d68f4c44ee97' 'v0.26.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.26.0.zip"
$out = "v0.26.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "f4d60d0af58287b1140f5d403f8227e9750cb36e008a9e514988d68f4c44ee97") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v0.26.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.26.0.tar.gz
                    printf '%s  %s\n' '436c90aa6373ac40ae4b68af3d7d038a5bc6109ca49e5b66fb535faaf8e32751' 'v0.26.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.26.0.tar.gz"
$out = "v0.26.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "436c90aa6373ac40ae4b68af3d7d038a5bc6109ca49e5b66fb535faaf8e32751") { throw "sha256 mismatch" }
artifact format size hashes
v0.26.0.zip zip 7.1 MiB
blake3-24 1ced3a024c203c042c938c7978c74fc6b0559ee8da2fe683
sha256 f4d60d0af58287b1140f5d403f8227e9750cb36e008a9e514988d68f4c44ee97
sha1 a07bc22eec4add1c8d6ed0a0bbddfa8616082201
v0.26.0.tar.gz tar.gz 7.0 MiB
blake3-24 0f84d1461cf450f8c70ccc0ec41a1a43e0e8b8d8ba3dac40
sha256 436c90aa6373ac40ae4b68af3d7d038a5bc6109ca49e5b66fb535faaf8e32751
sha1 114c72e4a2b480fee24851c181445500f4cec127

install

bazel
http_archive(
    name = "meilisearch",
    urls = ["https://ratatoskr.space/pkg/meilisearch/v0.26.0.tar.gz"],
    integrity = "sha256-Q2yQqmNzrECuS2ivPX0DilvGEJyknltm+1NfqvjjJ1E=",
    strip_prefix = "meilisearch-v0.26.0",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v0.26.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
    name = "meilisearch",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.26.0.tar.gz"],
    integrity = "sha256-Q2yQqmNzrECuS2ivPX0DilvGEJyknltm+1NfqvjjJ1E=",
    strip_prefix = "meilisearch-v0.26.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v0.26.0.tar.gz",
← v0.26.1v0.25.2 →