SpringBoot+MQ+Redis+BootStrap 秒杀系统(五)页面优化之Redis缓存与静态化分离

页面优化

SpringBoot+MQ+Redis+BootStrap 秒杀系统(五)页面优化之Redis缓存与静态化分离_第1张图片

 

页面缓存

解决Sping5中SpringWebContext方法过时:

https://blog.csdn.net/ouzhuangzhuang/article/details/84839266

https://blog.csdn.net/a3355211200/article/details/86662252

https://github.com/iquanzhan/SecKillShop/blob/master/src/main/java/com/chengxiaoxiao/seckillshop/controller/GoodsController.java

将html缓存到redis中,加快访问速度.

 

对象缓存

一个key对应一个对象.

 

 

页面静态化

优点: 利用浏览器缓存

 

SpringBoot+MQ+Redis+BootStrap 秒杀系统(五)页面优化之Redis缓存与静态化分离_第2张图片


http://ppkanshu.com/index.php/post/3699.html#

 

 

 

你可能感兴趣的:(Redis,SpringBoot,Spring)