摘要: 在Spring Boot项目中使用Spring Cache的操作步骤(使用redis缓存技术) 1、导入Maven坐标 spring-boot-starter-data-redis、sping-boot-starter-cache 2、配置application.yml spring: cache: 阅读全文
posted @ 2023-04-06 21:03 佛系粥米 阅读(142) 评论(0) 推荐(0) 编辑
摘要: package com.itheima.controller; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.itheima.entity.User; import com.i 阅读全文
posted @ 2023-04-06 20:36 佛系粥米 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Spring Cache是一个框架,实现了基于注解的缓存功能,只需要简单地加一个注释,就能实现缓存功能。 Spring Cache提供了一层抽象,底层可以切换不同的Cache实现。具体就是通过CacheManager接口来统一不同的缓存技术 CacheManager是Spring提供的各种缓存技术抽 阅读全文
posted @ 2023-04-06 14:50 佛系粥米 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 实现思路: 前面已经实现了移动端菜品查看功能,对应的服务端方法为DishController中的list方法,此方法会根据前端提交的查询条件进行数据库查询操作。在高并发的情况下,频繁查询数据库会导致系统性能下降,服务端响应时间增长。现在需要对此方法进行缓存优化,提高系统的性能 具体的实现思路: 1、 阅读全文
posted @ 2023-04-06 14:25 佛系粥米 阅读(28) 评论(0) 推荐(0) 编辑