For example entity, Product with example attributes (name,price, image ...). Are there any advantage/disadvantages on following strategy.
- One database (product) with key_name, key_price, key_image
- or product_name, product_price as seperate database itself.
Any performance impact if number of products are ~1M.
Thank you