Skip to content

Commit

Permalink
Fix typo in learn/resources/known_limitations (#2959)
Browse files Browse the repository at this point in the history
  • Loading branch information
sokhuong-uon authored Sep 3, 2024
1 parent 6c1cd33 commit 47f3e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions learn/resources/known_limitations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ If your query is `Hello - World`:

## Maximum number of concurrent search requests

**Limitation:** Meilisearch handles a maximum of concurrent 1000 search requests.
**Limitation:** Meilisearch handles a maximum of 1000 concurrent search requests.

**Explanation:** This limit exists to prevent Meilisearch from queueing an unlimited number of requests and potentially consuming an unbounded amount of memory. If Meilisearch receives a new request when the queue is already full, it drops a random search request and returns a 503 `too_many_search_requests` error with a `Retry-After` header set to 10 seconds. Configure this limit with [`--experimental-search-queue-size`](/learn/experimental/search_queue_size).

Expand Down Expand Up @@ -160,4 +160,4 @@ user = 1 OR (user = 2 AND user = 3) OR (user = 4 AND user = 5) OR user = 6

**Limitation:** When [searching for facet values](/reference/api/facet_search), Meilisearch returns a maximum of 100 facets.

**Explanation:** the limit to the maximum number of returned facets has been implemented to offer a good balance between usability and comprehensive results. Facet search allows users to filter a large list of facets so they may quickly find categories relevant to their query. This is different from searching through an index of documents. Faceting index settings such as `maxValuesPerFacet` limit the have no impact in facet search and only affect queries searching through documents.
**Explanation:** the limit to the maximum number of returned facets has been implemented to offer a good balance between usability and comprehensive results. Facet search allows users to filter a large list of facets so they may quickly find categories relevant to their query. This is different from searching through an index of documents. Faceting index settings such as the `maxValuesPerFacet` limit do not impact facet search and only affect queries searching through documents.

0 comments on commit 47f3e1a

Please sign in to comment.