判断术语是否存在于索引中的最快方法

时间:2019-06-09 17:04:39

标签: elasticsearch

什么是最快的查询,它可以判断索引中是否存在术语。我不是在寻找评分或其他任何东西,而只是通过弹性搜索快速的对/错响应表单,它具有包含该索引的文档。

1 个答案:

答案 0 :(得分:2)

您可以使用_count API。

示例:

GET /twitter/_count?q=user:kimchy

更多信息:

https://www.elastic.co/guide/en/elasticsearch/reference/current/search-count.html

您还可以将大小设置为0:

 GET /twitter/user/_search {
    "size": 0,   
    "query": {
             "match": {  
                     "username": "xyz" 
}}}