-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1761 from meilisearch/v0.28-faceting-settings
v0.28: Faceting settings
- Loading branch information
Showing
8 changed files
with
200 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
# Faceting | ||
|
||
_Child route of the [settings route](/reference/api/settings.md)._ | ||
|
||
This route allows you to configure the faceting settings for an index. | ||
|
||
Faceting settings can also be updated directly through the [global settings route](/reference/api/settings.md#update-settings) along with the other settings. | ||
|
||
To learn more about filtering and faceting, refer to our [dedicated guide](/learn/advanced/filtering_and_faceted_search.md). | ||
|
||
::: warning | ||
Updating the settings means overwriting the default settings of Meilisearch. You can reset to default values using the `DELETE` routes. | ||
::: | ||
|
||
## Get faceting settings | ||
|
||
<RouteHighlighter method="GET" route="/indexes/{index_uid}/settings/faceting"/> | ||
|
||
Get the faceting settings of an index. The index [`uid`](/learn/core_concepts/indexes.md#index-uid) is required. | ||
|
||
### Example | ||
|
||
<CodeSamples id="get_faceting_settings_1" /> | ||
|
||
#### Response: `200 OK` | ||
|
||
```json | ||
{ | ||
"maxValuesPerFacet": 100 | ||
} | ||
``` | ||
|
||
### Returned fields | ||
|
||
#### `maxValuesPerFacet` | ||
|
||
Maximum number of facet values returned for each facet. | ||
|
||
## Update faceting settings | ||
|
||
<RouteHighlighter method="PATCH" route="/indexes/{index_uid}/settings/faceting"/> | ||
|
||
Partially update the faceting settings for an index. The index [`uid`](/learn/core_concepts/indexes.md#index-uid) is required. | ||
|
||
### Body | ||
|
||
#### `maxValuesPerFacet` | ||
|
||
**Type:** integer | ||
**Default value:** `100` | ||
|
||
Configure the maximum number of facet values returned for each facet. Values are sorted in ascending lexicographical order. | ||
|
||
For example, suppose a query's search results contain a total of three values for a `colors` facet: `blue`, `green`, and `red`. If you set `maxValuesPerFacet` to `2`, Meilisearch will only return `blue` and `green` in the response body's `facetDistribution` object. | ||
|
||
::: note | ||
Setting `maxValuesPerFacet` to a high value might negatively impact performance. | ||
::: | ||
|
||
#### Example | ||
|
||
<CodeSamples id="update_faceting_settings_1" /> | ||
|
||
#### Response: `202 Accepted` | ||
|
||
```json | ||
{ | ||
"taskUid": 1, | ||
"indexUid": "books", | ||
"status": "enqueued", | ||
"type": "settingsUpdate", | ||
"enqueuedAt": "2022-04-14T20:56:44.991039Z" | ||
} | ||
``` | ||
|
||
You can use the returned `taskUid` to get more details on [the status of the task](/reference/api/tasks.md#get-task). | ||
|
||
## Reset faceting settings | ||
|
||
Reset an index's faceting settings to their default value. The index [`uid`](/learn/core_concepts/indexes.md#index-uid) is required. | ||
|
||
#### Example | ||
|
||
<CodeSamples id="reset_faceting_settings_1" /> | ||
|
||
#### Response: `200 OK` | ||
|
||
```json | ||
{ | ||
"taskUid": 1, | ||
"indexUid": "books", | ||
"status": "enqueued", | ||
"type": "settingsUpdate", | ||
"enqueuedAt": "2022-04-14T20:53:32.863107Z" | ||
} | ||
``` | ||
|
||
You can use the returned `taskUid` to get more details on [the status of the task](/reference/api/tasks.md#get-task). |
Oops, something went wrong.