I have a scenario where I need to sync my MySQL data into redis cache every 2 minutes.
Basically I have 2 tables categories and articles table. Every article belongs to some particular category. Retrieval : I need to fetch articles of particular section and sometimes limiting it.
I saw the 5 data structures available in Redis but getting confused to choose one of them which will be the appropriate for these requirements.
Every 2 minutes the entire data as to be removed and inserted.
So what is the best way I can go on with it.