1

我使用 Grails ElasticSearch 插件并希望使用以下查询:

"bool" : {
    "must" : {
        "term" : { "user" : "kimchy" }
    },
    "must_not" : {
        "range" : {
            "age" : { "from" : 10, "to" : 20 }
        }
    },
    "should" : [
        {
            "term" : { "tag" : "wow" }
        },
        {
            "term" : { "tag" : "elasticsearch" }
        }
    ],
    "minimum_should_match" : 1,
    "boost" : 1.0
}

使用 Grails 插件中的 groovy api,我会写如下内容:

def res = userAgentIdentService.search() {
    "bool" {
        "must" {
            term("user" : "kimchy" )
        }
        "must_not"  {
            "range"  {
                age("from" : 10, "to" : 20 }
            }
        }
        "should" : [
            {
                term( "tag" : "wow" )
            }
            {
                term("tag" : "elasticsearch" )
            }
        ]
        "minimum_should_match" = 1
        "boost" = 1.0
    } 

}

我的查询不起作用!

  1. 我必须在哪里定义 minimum_should_match 以及如何定义它?

  2. 我如何以 grails / groovy 的方式编写“应该”:[ ... ] 方括号符号?

4

1 回答 1

0

我认为您的搜索请求中缺少几个 json 级别。我认为您不能在不指定查询的情况下使用该查询(它也可以是一个过滤器,甚至是其他东西)。看看groovy api 参考中的这个例子

def search = node.client.search {
    indices "test"
    types "type1"
    source {
        query {
            terms(test: ["value1", "value2"])
        }
    }
}
于 2013-08-13T08:18:11.070 回答