I want to lowercase a "keyword" field, and then make sure the search is also lowercased. I am using normalizer. Is there an equivalent for "search_analyzer" for normalizers on user input?
"normalizer": {
"lower_normalizer": {
"type": "custom",
"filter": [ "lowercase", "asciifolding" ]
}
}
"rawci": {
"type": "keyword",
"normalizer": "lower_normalizer",
"ignore_above": 512
},
"match": {
"type": "text",
"analyzer": "match_analyzer",
"search_analyzer": "search_match_analyzer"
}