All settings
Index settings are represented as a JSON object literal (opens new window), containing a field for each possible customization option.
It is possible to modify all the settings at once using the update settings
endpoint, or individually using the dedicated routes.
These are the reference pages for the dedicated routes:
- Synonyms
- Stop-words
- Ranking rules
- Filterable attributes
- Distinct attribute
- Searchable attributes
- Displayed attributes
Learn more about the settings in this guide.
NOTE
When you update a setting, you overwrite its default value. Use the DELETE
route to reset any setting to its original value.
Get settings
GET
/indexes/:index_uid/settings
Get the settings of an index.
Learn more about the settings.
Path variables
Variable | Description |
---|---|
index_uid | The index UID |
Response body
Variable | Type | Description | Default value |
---|---|---|---|
synonyms | Object | List of associated words treated similarly | {} |
stopWords | [Strings] | List of words ignored by MeiliSearch when present in search queries | [] |
rankingRules | [Strings] | List of ranking rules sorted by order of importance | A list of ordered built-in ranking rules |
filterableAttributes | [Strings] | Attributes to use as filters and facets | [] |
distinctAttribute | String | Search returns documents with distinct (different) values of the given field | null |
searchableAttributes | [Strings] | Fields in which to search for matching query words sorted by order of importance | [““] (all attributes) |
displayedAttributes | [Strings] | Fields displayed in the returned documents | [““] (all attributes) |
Learn more about the settings in this guide.
Example
cURL
JavaScript
Python
PHP
Ruby
Go
Rust
curl \
-X GET 'http://localhost:7700/indexes/movies/settings'
client.index('movies').getSettings()
client.index('movies').get_settings()
$client->index('movies')->getSettings();
client.index('movies').settings
client.Index("movies").GetSettings()
let settings: Settings = movies.get_settings().await.unwrap();
Response: 200 Ok
List the settings.
{
"rankingRules": [
"typo",
"words",
"proximity",
"attribute",
"wordsPosition",
"exactness",
"desc(release_date)"
],
"filterableAttributes": ["genres"],
"distinctAttribute": null,
"searchableAttributes": ["title", "description", "genres"],
"displayedAttributes": [
"title",
"description",
"genre",
"release_date"
],
"stopWords": null,
"synonyms": {
"wolverine": ["xmen", "logan"],
"logan": ["wolverine", "xmen"]
}
}
Update settings
POST
/indexes/:index_uid/settings
Update the settings of an index.
Passing null
to an index setting will reset it to its default value.
Updates in the settings route are partial. This means that any parameters not provided in the body will be left unchanged.
If the provided index does not exist, it will be created.
Learn more about the settings in this guide.
Path variables
Variable | Description |
---|---|
index_uid | The index UID |
Body
Variable | Type | Description | Default value |
---|---|---|---|
synonyms | Object | List of associated words treated similarly | {} |
stopWords | [Strings] | List of words ignored by MeiliSearch when present in search queries | [] |
rankingRules | [Strings] | List of ranking rules sorted by order of importance | A list of ordered built-in ranking rules |
filterableAttributes | [Strings] | Attributes to use as filters and facets | [] |
distinctAttribute | String | Search returns documents with distinct (different) values of the given field | null |
searchableAttributes | [Strings] | Fields in which to search for matching query words sorted by order of importance | [““] (all attributes) |
displayedAttributes | [Strings] | Fields displayed in the returned documents | [““] (all attributes) |
Example
cURL
JavaScript
Python
PHP
Ruby
Go
Rust
curl \
-X POST 'http://localhost:7700/indexes/movies/settings' \
--data '{
"rankingRules": [
"words",
"typo",
"proximity",
"attribute",
"exactness",
"desc(release_date)",
"desc(rank)"
],
"distinctAttribute": "movie_id",
"searchableAttributes": [
"title",
"description",
"genre"
],
"displayedAttributes": [
"title",
"description",
"genre",
"release_date"
],
"stopWords": [
"the",
"a",
"an"
],
"synonyms": {
"wolverine": ["xmen", "logan"],
"logan": ["wolverine"]
}
}'
client.index('movies').updateSettings({
rankingRules: [
'words',
'typo',
'proximity',
'attribute',
'exactness',
'desc(release_date)',
'desc(rank)'
],
distinctAttribute: 'movie_id',
searchableAttributes: [
'title',
'description',
'genre'
],
displayedAttributes: [
'title',
'description',
'genre',
'release_date'
],
stopWords: [
'the',
'a',
'an'
],
synonyms: {
'wolverine': ['xmen', 'logan'],
'logan': ['wolverine']
}
})
client.index('movies').update_settings({
'rankingRules': [
'words',
'typo',
'proximity',
'attribute',
'exactness',
'desc(release_date)',
'desc(rank)'
],
'distinctAttribute': 'movie_id',
'searchableAttributes': [
'title',
'description',
'genre'
],
'displayedAttributes': [
'title',
'description',
'genre',
'release_date'
],
'stopWords': [
'the',
'a',
'an'
],
'synonyms': {
'wolverine': ['xmen', 'logan'],
'logan': ['wolverine']
},
'acceptNewFields': False
})
$client->index('movies')->updateSettings([
'rankingRules' => [
'words',
'typo',
'proximity',
'attribute',
'exactness',
'desc(release_date)',
'desc(rank)'
],
'distinctAttribute' => 'movie_id',
'searchableAttributes' => [
'title',
'description',
'genre'
],
'displayedAttributes' => [
'title',
'description',
'genre',
'release_date'
],
'stopWords' => [
'the',
'a',
'an'
],
'synonyms' => [
'wolverine' => ['xmen', 'logan'],
'logan' => ['wolverine']
]
]);
client.index('movies').update_settings({
rankingRules: [
'words',
'typo',
'proximity',
'attribute',
'exactness',
'desc(release_date)',
'desc(rank)'
],
distinctAttribute: 'movie_id',
searchableAttributes: [
'title',
'description',
'genre'
],
displayedAttributes: [
'title',
'description',
'genre',
'release_date'
],
stopWords: [
'the',
'a',
'an'
],
synonyms: {
wolverine: ['xmen', 'logan'],
logan: ['wolverine']
}
})
distinctAttribute := "movie_id"
settings := meilisearch.Settings{
RankingRules: []string{
"words",
"typo",
"proximity",
"attribute",
"exactness",
"desc(release_date)",
"desc(rank)",
},
DistinctAttribute: &distinctAttribute,
SearchableAttributes: []string{
"title",
"description",
"genre",
},
DisplayedAttributes: []string{
"title",
"description",
"genre",
"release_date",
},
StopWords: []string{
"the",
"a",
"an",
},
Synonyms: map[string][]string{
"wolverine": []string{"xmen", "logan"},
"logan": []string{"wolverine"},
},
}
client.Index("movies").UpdateSettings(&settings)
let mut synonyms = std::collections::HashMap::new();
synonyms.insert(String::from("wolverine"), vec!["xmen", "logan"]);
synonyms.insert(String::from("logan"), vec!["wolverine"]);
let settings = Settings::new()
.with_ranking_rules([
"words",
"typo",
"proximity",
"attribute",
"exactness",
"desc(release_date)",
"desc(rank)"
])
.with_distinct_attribute("movie_id")
.with_searchable_attributes([
"title",
"description",
"genre"
])
.with_displayed_attributes([
"title",
"description",
"genre",
"release_date"
])
.with_stop_words([
"the",
"a",
"an"
])
.with_synonyms(synonyms);
let progress: Progress = movies.set_settings(&settings).await.unwrap();
Response: 202 Accepted
{
"updateId": 1
}
This updateId
allows you to track the current update.
Reset settings
DELETE
/indexes/:index_uid/settings
Reset the settings of an index.
All settings will be reset to their default value.
Variable | Description | Default value |
---|---|---|
synonyms | List of associated words treated similarly | {} |
stopWords | List of words ignored by MeiliSearch when present in search queries | [] |
rankingRules | List of ranking rules sorted by order of importance | A list of ordered built-in ranking rules |
filterableAttributes | Attributes to use as filters and facets | [] |
distinctAttribute | Search returns documents with distinct (different) values of a given field | null |
searchableAttributes | Fields in which to search for matching query words sorted by order of importance | [““] (all attributes) |
displayedAttributes | Fields displayed in the returned documents documents | [““] (all attributes) |
Learn more about the settings.
Path variables
Variable | Description |
---|---|
index_uid | The index UID |
Example
cURL
JavaScript
Python
PHP
Ruby
Go
Rust
curl \
-X DELETE 'http://localhost:7700/indexes/movies/settings'
client.index('movies').resetSettings()
client.index('movies').reset_settings()
$client->index('movies')->resetSettings();
client.index('movies').reset_settings
client.Index("movies").ResetSettings()
let progress: Progress = movies.reset_settings().await.unwrap();
Response: 202 Accepted
{
"updateId": 1
}
This updateId
allows you to track the current update.