span_containing 查询

返回包含另一个 span 查询的匹配。 span 包含查询对应 Lucene 的 SpanContainingQuery。这里有一个例子:

GET /_search
{
    "query": {
        "span_containing" : {
            "little" : {
                "span_term" : { "field1" : "foo" }
            },
            "big" : {
                "span_near" : {
                    "clauses" : [
                        { "span_term" : { "field1" : "bar" } },
                        { "span_term" : { "field1" : "baz" } }
                    ],
                    "slop" : 5,
                    "in_order" : true
                }
            }
        }
    }
}

biglittle 子句可以是任何 span 类型的查询。 返回 big 中包含 little 中匹配项的匹配的 span。