Hello everyone,
For example my data
[
{ "id" : 1, "type" : "article", "title" : "About the Java Technology"
},
{ "id" : 2, "type" : "article", "title" : "How does ElasticSearch
work" },
{ "id" : 3, "type" : "article", "title" : "How to get the count of
results ElasticSearch" }
]
When we run the following command
GET myindex/article/_search
{
"query": {
"bool": {
"should": [
{
"match": {
"title": "how count elasticsearch"
}
}
]
}
}
}
We get these results
{
"took": 776,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 2,
"max_score": 0.16608897,
"hits": [
{
"_index": "myindex",
"_type": "article",
"_id": "3",
"_score": 0.16608897,
"_source": {
"title": "How to get the count of results ElasticSearch"
}
},
{
"_index": "myindex",
"_type": "article",
"_id": "2",
"_score": 0.05758412,
"_source": {
"title": "How does ElasticSearch work"
}
}
]
}
}
Now the question is: Contains a maximum term(how, count and elasticsearch)
the third document, match 100%
How can get this information from ElasticSearch?
I can benefit from the score and max_scor information when query match is
100% but when it is not 100% match?
Please help me
--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/d1ba2467-7cd9-4c5b-b934-33ec23ccfdc9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.