製圖

可以使用 analyzer 將分析器應用於對映,預設情況下使用標準分析器。或者,如果你不希望使用任何分析器(因為標記化或標準化沒有用),你可以指定 index:“not_analyzed”

PUT my_index 
{
  "mappings": {
    "user": {
      "properties": {
        "name": {
          "type": "string"
          "analyzer":  "my_user_name_analyzer"
        },
        "id": {
          "type": "string",
          "index": "not_analyzed"
        }
      }
    }
  }
}