elasticsearch练习--高级查询-bool-组合查询
请求resful: GET
请求:http://119.91.127.xxx:9200/myuser/_search
请求方式: json
{ "query": { "bool": { "must": [ { "match": { "name": "zhangsan" } } ], "should":[ { "match":{ "sex":"男" } } ] } } }