`
m635674608
  • 浏览: 4961350 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

es 1.7 ik 配置

 
阅读更多
#没问题
index:
  analysis: 
     filter:
      my_synonym:
        type: synonym
        synonyms_path: analysis/synonym.txt
     analyzer:      
      ik_max_word_synonym:
        filter: [my_synonym]
        type: org.elasticsearch.index.analysis.IkAnalyzerProvider 
        use_smart: false
      ik_max_smart_synonym:
        filter: [my_synonym]
        type: org.elasticsearch.index.analysis.IkAnalyzerProvider 
        use_smart: true
      ik_max_word:
         type: org.elasticsearch.index.analysis.IkAnalyzerProvider 
         use_smart: false
      ik_smart:
        type: org.elasticsearch.index.analysis.IkAnalyzerProvider 
        use_smart: true  
        
index.analysis.analyzer.default.type : "ik"

  

#ik_smart 没生效
index:
  analysis: 
     filter:
      my_synonym:
        type: synonym
        synonyms_path: analysis/synonym.txt
     tokenizer:
      ik_tokenizer:
        type: org.elasticsearch.index.analysis.IkAnalyzerProvider
     analyzer:      
      ik_max_word_synonym:
        filter: [my_synonym]
        type: custom
        tokenizer: ik_tokenizer
        use_smart: false
      ik_max_smart_synonym:
        filter: [my_synonym]
        type: custom
        tokenizer: ik_tokenizer
        use_smart: true
      ik_max_word:
         type: custom
         tokenizer: ik_tokenizer
         use_smart: false
      ik_smart:
        type: custom
        tokenizer: ik_tokenizer
        use_smart: true  
        
index.analysis.analyzer.default.type : "ik"

 

#没问题
index:
  analysis:
    analyzer:
      ik:
          alias: [ik_analyzer]
          type: org.elasticsearch.index.analysis.IkAnalyzerProvider
      ik_max_word:
          type: ik
          use_smart: false
      ik_smart:
          type: ik
          use_smart: true

 

 

http://www.cnblogs.com/yjf512/p/4789239.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics