-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Closed
Labels
:Search Relevance/HighlightingHow a query matched a documentHow a query matched a documentTeam:Search RelevanceMeta label for the Search Relevance team in ElasticsearchMeta label for the Search Relevance team in Elasticsearch
Description
I am fiddling with fuzzy search in elasticsearch-0.20.6 and elasticsearch-0.90.1. I am using highlighting to help me tune the fuzzyness. The highlighting shows fine when I use fuzzy until I add "min_similarity". I use head to post and check the results.
Shows highlighting:
{
"query": {
"fuzzy": {
"title": "bambi"
}
},
"highlight": {
"fields": {
"title": {}
}
}Doesn't show highlighting:
{
"query": {
"fuzzy": {
"title": "bambi",
"min_similarity": 0.8
}
},
"highlight": {
"fields": {
"title": {}
}
}Is this not possible or is it a bug?
Metadata
Metadata
Assignees
Labels
:Search Relevance/HighlightingHow a query matched a documentHow a query matched a documentTeam:Search RelevanceMeta label for the Search Relevance team in ElasticsearchMeta label for the Search Relevance team in Elasticsearch