elasticsearch如何匹配多个术语查询?
{ 'query': { 'bool': { 'must': [{ 'bool': { 'should': [{ 'term': { 'deletionStateCode.keyword': { 'value': '0', 'boost': 1 } } }, { 'term': { 'enabled.keyword': { 'value': '1', 'boost': 1 } } } ], 'adjust_pure_negative': true, 'boost': 1 } }, { 'term': { 'id.keyword': { 'value': '123456789', 'boost': 1 } } } ], 'adjust_pure_negative': true, 'boost': 1 } } } 试试这个
赞1
踩0