elasticsearch:如何使用analyzer,tokenizer和filter精确定义索引

时间:2013-10-15 07:06:44

标签: elasticsearch

//这不起作用并在创建索引时显示错误... //未知的字符c,它根据客户字段

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"
}
    }
  }
}

1 个答案:

答案 0 :(得分:0)

  • 您忘记了第一个{
  • 某些字符串未用双引号括起来。

请更好地格式化json。