The scoring is relative to the other documents and as such there is no such
thing as a 100% match.

On 30 March 2015 at 01:39, Terra Sacer <terrasa...@gmail.com> wrote:

> Is this not possible?
>
> On Saturday, March 28, 2015 at 6:33:53 PM UTC+2, Terra Sacer wrote:
>>
>> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/f8ea789f-edfa-4351-b939-d815ddbd2c9f%40googlegroups.com
> <https://groups.google.com/d/msgid/elasticsearch/f8ea789f-edfa-4351-b939-d815ddbd2c9f%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAEYi1X_bkGteKHUrexnJLEhtCP_vVOZbC3j3BGsxUaQ6uuXoqg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to