Solr accent removal

后端 未结 1 1737
时光取名叫无心
时光取名叫无心 2021-02-11 05:30

i have read various threads about how to remove accents during index/query time. The current fieldtype i have come up with looks like the following:



        
1条回答
  •  一生所求
    2021-02-11 06:03

    The issue is you are applying StandardTokenizerFactory before applying the ASCIIFoldingFilterFactory. Instead you should use the MappingCharFilterFactory character filter factory first and the the StandardTokenizerFactory.

    As per the Solr Reference guide StandardTokenizerFactory supports , , , , and . Therefore when you tokenize using StandardTokenizerFactory the umlaut characters are lost and your ASCIIFoldingFilterFactory is of no use after that.

    Your fieldType should be like below if you want to go for StandardTokenizerFactory.

         
        
                
                
                
             
    
    

    The mapping-ISOLatin1Accent.txt should have the mappings for such "special" characters. In Solr this file comes pre-populated by default. For e.g. ü -> ue, ä -> ae, etc.

    0 讨论(0)
提交回复
热议问题