0

http://www.elasticsearch.org/guide/reference/index-modules/analysis/standard-analyzer.html

在使用自定义停用词进行索引期间,我必须使用标准分析器。

如何定义映射?

4

1 回答 1

0

以下命令将使用自定义停用词集设置标准分析器作为索引的默认分析器testidx

curl -XPUT http://localhost:9200/testidx/ -d '{
  "settings":{ 
    "analysis":{
      "analyzer":{
        "default":{
          "type":"standard",
          "stopwords":["foo", "bar", "baz"]
        }
      }
    }
  }
}'

或者,如果您只想将自定义停用词用于索引:

curl -XPUT http://localhost:9200/testidx/ -d '{
  "settings":{ 
    "analysis":{
      "analyzer":{
        "default_index":{
          "type":"standard",
          "stopwords":["foo", "bar", "baz"]
        }
      }
    }
  }
}'
于 2012-06-15T12:16:32.603 回答