search

Home  >  Q&A  >  body text

redis做缓存,怎么更新里面的数据

redis做缓存,先从redis读,读不到进数据库,再存入redis

1、那比如数据库更新了怎么操作。 数据库和redis各写一遍更新命令执行?
2、缓存数据要不要设置超时? 超时之后读不到,继续进数据库读,再存入?

ringa_leeringa_lee2796 days ago599

reply all(1)I'll reply

  • 阿神

    阿神2017-04-24 09:12:07

    The pseudo code is as follows, and the idea is clear.

    • Reading and writing part
    if(redis){
        读取redis数据
    }else{
        数据库读取,存redis+设置超时时间
    }
    
    • Update section
    if(数据库update){
        更新redis+设置超时时间
    }
    

    reply
    0
  • Cancelreply