we are trying to move our database from MySQL. We are trying to understand how Redis work and we would like to know the best solution for this example.
How to solve Product->Categories relation?
We will need - list of all products sorted by ID
list of all products sorted by Name (ASC / DESC)
list of all products in Category 1
list of all products in Category 1 sorted by Name / ID / (ASC / DESC)
From second part of image we will need to filter by Attributes
list of all products with Attribute 1 (Attribute Value 1)
list of all products with Attribute 1 (Attribute Value 1) in Category 1 sorted by Name
Is it good to use Redis for this kind of data?
Thanks