es实现and与or查询
{ "query": { "bool": { "must": [{ "match_phrase": { "name": "a" } }], "should": [{ "match_phrase": { "city": "b" } }, { "match_phrase": { "city": "c" } }], "minimum_should_match": 1 } }, "size": 5 }
实现 "name"=="a" and ("city" == "b" or "city" == "c")
读书犯困,因为那是梦开始的地方;