I am trying to put some commonly used data in a redis server from mysql. so redis as a read server, I need to move data from mysql to redis. can anyone recommend a good approach? I read some topics and have some thinking
1, use the mysql trigger to write the correct data, use the time reference application to move the data to redis 2, read the mysql logs, analyze it, then move it to redis.
BTW: in my applications, the data stored in redis is not needed in real time, a little latency is fine.
source
share