Hi!
Can anyone tell me if using the multifields strategy (strategy A) would be better than individually separating (strategy B) each field? What would be the advantages between one and the other?
Strategy A
{
"title": {
"type": "text",
"fields": {
"pt-br": {
"type": "text",
"analyzer": "brazilian"
},
"en": {
"type": "text",
"analyzer": "english"
}
}
}
}
Strategy B
{
"title_pt-br": {
"type": "text",
"analyzer": "brazilian"
},
"title_en": {
"type": "text",
"analyzer": "english"
}
}