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

elastic search语句

时间:2019-01-26 17:56:37      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:row   class   mat   python   Lucene   匹配   div   bool   pytho   

 

基本匹配:

{
    "query":{
        "match":{
            "title" : "quick"
        }
    }
}

 

ES语法结构:

bool <-AND- must, must not, should

should <-OR- bool

 

OR语句:

{
    "query":{
        "match":{
            "title" : "brown dog"
        }
    }
 }

等价于

{
    "query":{
        "bool":{
            "should":[
                {
                    "term":{
                        "title":"brown"
                    }
                },{
                    "term":{
                        "title":"dog"
                    }
                }
            ]
        }
    }
}

  

AND语句:

{
    "query":{
        "match":{
            "title":{
                "query":"brown dog",
                "operator":"and"
            }
        }
    }
} 

等价于

{
    "query":{
        "bool":{
            "must":[
                {
                    "term":{
                        "title":"brown"
                    }
                },{
                    "term":{
                        "title":"dog"
                    }
                }
            ]
        }
    }
}

  

复合语句

1)

{
    "query":{
        "bool":{
            "must":{
                "match":{
                    "title":"quick"
                }
            },
            "should":[
                {
                    "match":{
                        "title":"brown"
                    }
                },{
                    "match":{
                        "title":"dog"
                    }
                }
            ]
        }
    }
} 

2)

{
    "query":{
        "bool":{
            "must":{
                "match":{
                    "content":{
                        "query":"full text search",
                        "operator":"and"
                    }
                }
            },
            "should":[
                {
                    "match":{
                        "content":"elastic search"
                    }
                },{
                    "match":{
                        "content":"lucene"
                    }
                }
            ]
        }
    }
}

  

 

elastic search语句

标签:row   class   mat   python   Lucene   匹配   div   bool   pytho   

原文地址:https://www.cnblogs.com/yaoyaohust/p/10324248.html

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