5.1.1 后端服务实现层 修 改 pinyougou-content-service 的 ContentServiceImpl

@Autowired
 
 
private  RedisTemplate  redisTemplate; @Override
public  List<TbContent>  findByCategoryId(Long  categoryId)  {
 
 
List<TbContent>  contentList=  (List<TbContent>) redisTemplate.boundHashOps("content").get(categoryId);
 
if(contentList==null){
 
System.out.println("从数据库读取数据放入缓存");
 
//根据广告分类 ID 查询广告列表
contentExample=new  TbContentExample(); Criteria  criteria2  =  contentExample.createCriteria();
criteria2.andCategoryIdEqualTo(categoryId);
 
criteria2.andStatusEqualTo("1");//开启状态
 
contentExample.setOrderByClause("sort_order");//排序
 
contentList  =  contentMapper.selectByExample(contentExample);//获取广告列
表
 
redisTemplate.boundHashOps("content").put(categoryId,  contentList);//存
入缓存
 
}else{
 
System.out.println("从缓存读取数据");
 
}
 
 
return    contentList;
 
 
}

5.1 更新缓存 当广告数据发生变更时,需要将缓存数据清除,这样再次查询才能获取最新的数据 5.1.1 新增广告后清除缓存 修改 pinyougou-content-service 工程 ContentServiceImpl.java 的 add 方法

/**
 
* 增 加
 
*/ @Override
public  void  add(TbContent  content)  {
 
contentMapper.insert(content);
//清除缓存redisTemplate.boundHashOps("content").delete(content.getCategoryId());
 
}

5.1.1 修改广告后清除缓存 考虑到用户可能会修改广告的分类,这样需要把原分类的缓存和新分类的缓存都清除掉。

/**
 
* 修 改
 
*/ @Override
public  void  update(TbContent  content){
 
//查询修改前的分类 Id Long  categoryId  =
contentMapper.selectByPrimaryKey(content.getId()).getCategoryId();
 
redisTemplate.boundHashOps("content").delete(categoryId); contentMapper.updateByPrimaryKey(content);
//如果分类 ID 发生了修改,清除修改后的分类 ID 的缓存
 
if(categoryId.longValue()!=content.getCategoryId().longValue()){ redisTemplate.boundHashOps("content").delete(content.getCategoryId());
}
 
}

5.1.1 删除广告后清除缓存

/**
* 批量删除
 
*/ @Override
public  void  delete(Long[]  ids)  {
 
 
for(Long  id:ids){
 
//清除缓存
 
Long  categoryId  =  contentMapper.selectByPrimaryKey(id).getCategoryId();//广
告分类 ID
 
redisTemplate.boundHashOps("content").delete(categoryId); contentMapper.deleteByPrimaryKey(id);
}
 
 
}