Hi,
What is the best pratice to index the same field in multiple languages?
Eg.
class Hotel {
public Map<String, String> name;
}
myHotel.name.put("pt", "Palácio");
myHotel.name.put("en", "Palace");
I saw some language analyzers, but they can be applied to different fields eg. Two fields: name_en, name_pt.
But to index the same "name" field using different analyzers what should I do? Create different indexes, one for each language? Doing this should I send the same object (with only one language) to each index?
Thanks.