Hi everybody ! :)

I've got an issue when I try to apply a phonetic filter : I do not have any 
highlight anymore.

Here is the settings used :
            "analysis": {
               "analyzer": {
                  "my_analyzer": {
                     "filter": [
                        "standard",
                        "lowercase",
                        "my_stemmer",
                        "my_phonetic"
                     ],
                     "tokenizer": "standard"
                  }
               },
               "filter": {
                  "my_stemmer": {
                     "type": "stemmer",
                     "replace": "false",
                     "name": "french"
                  },
                  "my_phonetic": {
                     "replace": "false",
                     "type": "phonetic",
                     "languageset": [
                        "french",
                        "english",
                        "german"
                     ],
                     "encoder": "beidermorse"
                  }
               }
            }

Without this filter, more precisely if I use those filters, then it works :
"my_analyzer": {
                     "filter": [
                        "lowercase",
                        "asciifolding",
                        "my_stemmer"
                     ],
                     "tokenizer": "standard"
                  }

Does anyone can help me ? Or have a piece of idea by any chance ?

Thanks,

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/2a146c45-bfdb-40e6-9f44-2ab369d1d916%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to