Hello everyone,
I wonder which association model is better in my case.
I'm going to use ES to store information about customers and their cases. Each customer has 0-5 cases and each case is related to 0-5 customers (many-to-many). The number of customers and cases is growing up. The data will be frequently updated. Each model contains 20 fields (more or less). There are 2 search scenarios:
- find all cases with given characteristics associated with customers with the given features
- find all customers with given characteristics associated with cases with the given features
Not sure if two independent types is a good solution and I need an advice. Thanks.