You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guides/docker.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Docker is a tool that bundles applications into containers. Docker containers en
12
12
Docker containers are distributed in images. To use Meilisearch, use the `docker pull` command to download a Meilisearch image:
13
13
14
14
```sh
15
-
docker pull getmeili/meilisearch:v1.13
15
+
docker pull getmeili/meilisearch:v1.14
16
16
```
17
17
18
18
Meilisearch deploys a new Docker image with every release of the engine. Each image is tagged with the corresponding Meilisearch version, indicated in the above example by the text following the `:` symbol. You can see [the full list of available Meilisearch Docker images](https://hub.docker.com/r/getmeili/meilisearch/tags#!) on Docker Hub.
@@ -29,7 +29,7 @@ After completing the previous step, use `docker run` to launch the Meilisearch i
29
29
docker run -it --rm \
30
30
-p 7700:7700 \
31
31
-v $(pwd)/meili_data:/meili_data \
32
-
getmeili/meilisearch:v1.13
32
+
getmeili/meilisearch:v1.14
33
33
```
34
34
35
35
### Configure Meilisearch
@@ -45,7 +45,7 @@ docker run -it --rm \
45
45
-p 7700:7700 \
46
46
-e MEILI_MASTER_KEY='MASTER_KEY'\
47
47
-v $(pwd)/meili_data:/meili_data \
48
-
getmeili/meilisearch:v1.13
48
+
getmeili/meilisearch:v1.14
49
49
```
50
50
51
51
#### Passing instance options with CLI arguments
@@ -56,7 +56,7 @@ If you want to pass command-line arguments to Meilisearch with Docker, you must
56
56
docker run -it --rm \
57
57
-p 7700:7700 \
58
58
-v $(pwd)/meili_data:/meili_data \
59
-
getmeili/meilisearch:v1.13 \
59
+
getmeili/meilisearch:v1.14 \
60
60
meilisearch --master-key="MASTER_KEY"
61
61
```
62
62
@@ -74,7 +74,7 @@ To keep your data intact between reboots, specify a dedicated volume by running
74
74
docker run -it --rm \
75
75
-p 7700:7700 \
76
76
-v $(pwd)/meili_data:/meili_data \
77
-
getmeili/meilisearch:v1.13
77
+
getmeili/meilisearch:v1.14
78
78
```
79
79
80
80
The example above uses `$(pwd)/meili_data`, which is a directory in the host machine. Depending on your OS, mounting volumes from the host to the container might result in performance loss and is only recommended when developing your application.
@@ -89,7 +89,7 @@ To import a dump, use Meilisearch's `--import-dump` command-line option and spec
Copy file name to clipboardExpand all lines: learn/resources/experimental_features_overview.mdx
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,3 +55,5 @@ Activating or deactivating experimental features this way does not require you t
55
55
|[Edit documents with function](/reference/api/documents#update-documents-with-function)| Use a RHAI function to edit documents directly in the Meilisearch database | API route |
56
56
|[`/network` route](/reference/api/network)| Enable `/network` route | API route |
57
57
|[Dumpless upgrade](/learn/self_hosted/configure_meilisearch_at_launch#dumpless-upgrade)| Upgrade Meilisearch without generating a dump | API route |
58
+
|[Composite embedders](/reference/api/settings#composite-embedders)| Enable composite embedders | API route |
59
+
|[Search query embedding cache](/learn/self_hosted/configure_meilisearch_at_launch#search-query-embedding-cache)| Enable a cache for search query embeddings | CLI flag or environment variable |
Copy file name to clipboardExpand all lines: learn/self_hosted/configure_meilisearch_at_launch.mdx
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -402,6 +402,17 @@ Sets the maximum size of [accepted payloads](/learn/getting_started/documents#da
402
402
403
403
Configure the maximum amount of simultaneous search requests. By default, Meilisearch queues up to 1000 search requests at any given moment. This limit exists to prevent Meilisearch from consuming an unbounded amount of RAM.
Sets the size of the search query embedding cache. By default, Meilisearch generates an embedding for every new search query. When this option is set to an integer bigger than 0, Meilisearch returns a previously generated embedding if it recently performed the same query.
413
+
414
+
The least recently used entries are evicted first. Embedders with the same configuration share the same cache, even if they were declared in distinct indexes.
0 commit comments