Hello - I am new to elastic search. I am trying to figure out the pros and cons of using nested values for a field vs using multiple indexes.
A simple use case is a person has multiple addresses. There are two types of queries will be used: 1. By a person (id, name, etc) 2. By Address (city, state, zip). In both cases, the results needed are the person(s) and addresses associated with persons.
For these use cases, what are the pros and cons of using the Nested field for address vs a separate address index?
Any insights and links to read, of great help. Thanks in advance.