Ranking rules
Child route of the settings route.
Ranking rules are built-in rules that allow you to customize the relevancy of your search results. They are stored in an array and applied in order of appearance.
Ranking rules can also be updated directly through the global settings route along with the other settings.
Learn more about ranking rules.
NOTE
Updating the settings means overwriting the default settings of MeiliSearch. You can reset to default values using the DELETE
routes.
Get ranking rules
GET
/indexes/:index_uid/settings/ranking-rules
Get the ranking rules of an index.
Path variables
Variable | Description |
---|---|
index_uid | The index UID |
Default value
An array that contains ranking rules in order of importance.
Example
cURL
JavaScript
Python
PHP
Ruby
Go
Rust
curl \
-X GET 'http://localhost:7700/indexes/movies/settings/ranking-rules'
client.index('movies').getRankingRules()
client.index('movies').get_ranking_rules()
$client->index('movies')->getRankingRules();
client.index('movies').ranking_rules
client.Index("movies").GetRankingRules()
let ranking_rules: Vec<String> = movies.get_ranking_rules().await.unwrap();
Response: 200 Ok
List the settings.
[
"words",
"typo",
"proximity",
"attribute",
"exactness",
"desc(release_date)"
]
Update ranking rules
POST
/indexes/:index_uid/settings/ranking-rules
Update the ranking rules of an index.
Path variables
Variable | Description |
---|---|
index_uid | The index UID |
Body
An array that contain ranking rules sorted by order of importance.
To add your own ranking rule, you have to communicate either asc
for ascending order or desc
for descending order followed by the field name in brackets.
To apply an ascending sort (results sorted by increasing value):
asc(attribute_name)
To apply a descending sort (results sorted by decreasing value):
desc(attribute_name)
More information about the body.
Example
cURL
JavaScript
Python
PHP
Ruby
Go
Rust
curl \
-X POST 'http://localhost:7700/indexes/movies/settings/ranking-rules' \
--data '[
"words",
"typo",
"proximity",
"attribute",
"exactness",
"asc(release_date)",
"desc(rank)"
]'
client.index('movies').updateRankingRules([
'words',
'typo',
'proximity',
'attribute',
'exactness',
'asc(release_date)',
'desc(rank)'
])
client.index('movies').update_ranking_rules([
'words',
'typo',
'proximity',
'attribute',
'exactness',
'asc(release_date)',
'desc(rank)'
])
$client->index('movies')->updateRankingRules([
'words',
'typo',
'proximity',
'attribute',
'exactness',
'asc(release_date)',
'desc(rank)'
]);
client.index('movies').update_ranking_rules([
'words',
'typo',
'proximity',
'attribute',
'exactness',
'asc(release_date)',
'desc(rank)'
])
rankingRules := []string{
"words",
"typo",
"proximity",
"attribute",
"exactness",
"asc(release_date)",
"desc(rank)",
}
client.Index("movies").UpdateRankingRules(&rankingRules)
let ranking_rules = [
"words",
"typo",
"proximity",
"attribute",
"exactness",
"asc(release_date)",
"desc(rank)",
];
let progress: Progress = movies.set_ranking_rules(&ranking_rules).await.unwrap();
Response: 202 Accepted
{
"updateId": 1
}
This updateId
allows you to track the current update.
Reset ranking rules
DELETE
/indexes/:index_uid/settings/ranking-rules
Reset the ranking rules of an index to their default value.
TIP
Note that resetting the ranking rules is not the same as removing them.
To remove a ranking rule, use the add or replace ranking rules route.
Default value
An array that contains the built-in ranking rules in the following order:
["words", "typo", "proximity", "attribute", "exactness"]
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/ranking-rules'
client.index('movies').resetRankingRules()
client.index('movies').reset_ranking_rules()
$client->index('movies')->resetRankingRules();
client.index('movies').reset_ranking_rules
client.Index("movies").ResetRankingRules()
let progress: Progress = movies.reset_ranking_rules().await.unwrap();
Response: 202 Accepted
{
"updateId": 1
}
This updateId
allows you to track the current update.