I am creating a product search widget that e-commerce customers integrate on their website. Let's say I have 100 customers with 1000 products each.
Visitors to a specific client website can search only for these client products.
Given that the products use the same attributes (id, name, price, etc.) for customers:
Should I use a separate index for each customer or one index to store the products of all customers and somehow connect each product to the customer?
Thanks in advance.
source
share