您需要使用
bool/must查询来做到这一点
res = es.search(index="dummy", body={ "from": 0, "size": 0, "query": { "bool": { "must": [ { "range": { "key": { "gte": "1000" } } }, { "match": { "word": "sky" } } ] } }})
欢迎分享,转载请注明来源:内存溢出
您需要使用
bool/must查询来做到这一点
res = es.search(index="dummy", body={ "from": 0, "size": 0, "query": { "bool": { "must": [ { "range": { "key": { "gte": "1000" } } }, { "match": { "word": "sky" } } ] } }})
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)