I am indexing messages from all around the world but mainly Thailand. The indexed messages will most likely contain either English or Thai.
Does anyone know the best way to set the ES index so that it will return good search results for both Thai and English searches?
I've tried using this setting:
{
"settings": {
"analysis" : {
"analyzer" : {
"default" : {
"type" : "cjk"
}
}
}
}
}
The results for the cjk analyser are not great when searching in Thai. I actually don't know why that is but any help would be very much appreciated!