-1

//这不起作用并在创建索引时显示错误... //unexcepted character c 它来自custome字段

curl -XPOST localhost:9200/sports0/' -d" 
  "settings":{
    "analysis":{
      "analyzer":{
        "autocomplete":{
          "type":"custom",
          "tokenizer":"standard",
          "filter":[ "standard", "lowercase", "stop", "kstem", "ngram" ] 
        `enter code here`}
      },
           filter:{  
              type:"stop" ,stopwords:"stopwords.txt"
}
    }
  }
}
4

1 回答 1

0
  • 你忘了第一个{
  • 一些字符串没有用双引号括起来。

请对 json 进行更好的格式化。

于 2013-10-15T09:46:55.507 回答