Hi,
How do I use synonyms with Elastic Cloud as I can not use a text file?
I want something that is expandable (change the list) and if possible, no re-indexing.
I found an example to create a new index with synonyms but can I modify the list after and if so, how?
PUT /test_index
{
"settings": {
"index" : {
"analysis" : {
"filter" : {
"synonym" : {
"type" : "synonym",
"synonyms" : [
"i-pod, i pod => ipod",
]
}}}}}}
Thanks.