JAVACAFE-STUDY / elasticsearch-2023

검색엔진 스터디 팀
0 stars 0 forks source link

6주차 #5

Open clghks opened 1 year ago

clghks commented 1 year ago
  1. 7장 정리해오기

  2. analyzer 사용 방법 찾기

    • 데이터 삼성전자 삼성 전자
clghks commented 1 year ago

실습 내용

인덱스 생성

{
  "settings": {
    "index": {
      "analysis": {
        "tokenizer": {
          "nori_user_dict_tokenizer": {
            "type": "nori_tokenizer",
            "decompound_mode": "mixed",
            "user_dictionary": "userdict_ko.txt"
          }
        },
        "analyzer": {
          "nori_token_analyzer": {
            "type": "custom",
            "tokenizer": "nori_user_dict_tokenizer"
          }
        }
      }
    }
  },
  "mappings": {
      "properties": {
          "word": {
              "type": "text",
              "analyzer": "nori_token_analyzer"
          }
      }
  }
}

검색

{
  "query": {
    "match": {
      "word": {
        "query": "삼성",
        "analyzer": "nori_token_analyzer"
      }
    }
  }
}
62hoon99 commented 1 year ago

7장 analyzer 사용 방법

keeperserverd commented 1 year ago

7장

KimDoubleB commented 1 year ago

7장 실습

leebokeum commented 1 year ago

7장

Ting-Kim commented 1 year ago

7장

KimDoubleB commented 1 year ago

8.10.2 사용 시 참고사항