Elasticsearch the study notes -term inquiry

term represents the exact match, that is, no word is analyzed, the document must contain the entire search terms

GET /ecommerce/product/_search
{
  "query": {
    "term": {
        "fieldName": "fieldContent"
    }
  }
}

 

Guess you like

Origin www.cnblogs.com/wjx-blog/p/12073954.html