码迷,mamicode.com
首页 > 其他好文 > 详细

更复杂的搜索(more complicated searches)

时间:2014-05-09 00:06:23      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:class   int   http   get   c   com   

来尝试一下更为复杂一点的检索。我们想要找到姓中包含“Smith"且年龄大于30的员工信息,一个有效的查询如下:

GET /megacorp/employee/_search
{
   
"query":{
       
"filtered":{
           
"filter":{
               
"range":{
                   
"age":{"gt":30}bubuko.com,布布扣
               
}
           
},
           
"query":{
               
"match":{
                   
"last_name":"smith"bubuko.com,布布扣
               
}
           
}
       
}
   
}
}

以上请求体有两部分组成

1:范围过滤器,这个过滤器定义了age大于30的员工信息(gt:greateer than)。

2:查询姓中包含smith的信息。

先不要太在意语法和关键字,这里只是让你意识到我们使用了一个范围过滤器。现在结果就成了如下形式:

{
   
...
   
"hits":{
     
"total":      1,
     
"max_score":  0.30685282,
     
"hits":[
         
{
           
...
           
"_source":{
               
"first_name":  "Jane",
               
"last_name":   "Smith",
               
"age":         32,
               
"about":       "I like to collect rock albums",
               
"interests":["music"]
           
}
         
}
     
]
   
}
}

原文:http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/_more_complicated_searches.html

更复杂的搜索(more complicated searches),布布扣,bubuko.com

更复杂的搜索(more complicated searches)

标签:class   int   http   get   c   com   

原文地址:http://www.cnblogs.com/blog1350995917/p/3716420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!