The faster method to move redis data to MySQL

Viewed 11310

We have big shopping and product dealing system. We have faced lots problem with MySQL so after few r&D we planned to use Redis and we start integrating Redis in our system. Following this previously directly hitting the database now we have moved the Redis system

  1. User shopping cart details
  2. Affiliates clicks tracking records
  3. We have product dealing user data.
  4. other site stats.

I am not only storing the data in Redis system i have written crons which moves Redis data in MySQL data at time intervals. This is the main point i am facing the issues. Bellow points i am looking for solution

  1. Is their any other ways to dump big data from Redis to MySQL?
  2. Redis fail our store data in file so is it possible to store that data directly to MySQL database?
  3. Is Redis have any trigger system using that i can avoid the crons like queue system?
1 Answers
Related