Hello,
i try to resolve the issue with search the names on greek. if a greek name in index is uppercase and search is done with lowercase, then i don't receive any results. however, if the same scenario applies to english names then the search works well. i try to use such custom analyzer:
analyzer: {
greek_analyzer: {
type : custom,
tokenizer : standard,
filter : [my_greek_lowercase]
}
},
filter : {
my_greek_lowercase : {
type : lowercase
name : greek
}
}
}
and i have such mapping:
fullName:{type:string, analyzer:some_my_default_analyzer,
fields: {raw:{type: String, index: not_analyzed},
greek: { type: string, analyzer: greek_analyzer }}}
do you have any ideas what could be wrong with this?
thank you!