Elasticsearch search query for matching keyword

To develop an Elasticsearch query for keyword type matching, you can use the "match" query with the "keyword" type field. The "keyword" type fields are not analyzed, which means they are treated as exact values and not tokenized.

Here's an example of how to use the "match" query for keyword type matching:

Suppose you have an index called "my_index" with documents containing a field called "title" of "keyword" type. The goal is to search for documents that have a specific "title" value.

POST /my_index/_search
{
  "query": {
    "match": {
      "title": "Your Keyword Here"
    }
  }
}

In this example, replace "Your Keyword Here" with the actual keyword you want to match. Elasticsearch will find all documents in "my_index" that have an exact match for the "title" field with the specified keyword.

Please note that by default, the "match" query uses the "OR" operator, meaning it will match documents containing any of the provided terms. If you want to perform an exact match on the entire field value, you can use the "operator" parameter:

POST /my_index/_search
{
  "query": {
    "match": {
      "title": {
        "query": "Your Keyword Here",
        "operator": "and"
      }
    }
  }
}

With the "operator" set to "and," Elasticsearch will only return documents that have an exact match with the entire "title" field value, rather than matching any individual term in the "title" field.

Remember to adjust the index name ("my_index") and field name ("title") in the queries based on your actual data model.

댓글

이 블로그의 인기 게시물

PYTHONPATH, Python 모듈 환경설정

You can use Sublime Text from the command line by utilizing the subl command

git 명령어

[gRPC] server of Java and client of Typescript

[Ubuntu] Apache2.4.x 설치

Create topic on Kafka with partition count, 카프카 토픽 생성하기

리눅스의 부팅과정 (프로세스, 서비스 관리)

Auto-populate a calendar in an MUI (Material-UI) TextField component

The pierce selector in Puppeteer