redis学习笔记(一)

@Cacheable(value="XXX_user",key="'getUserAllInfoJsonByUserCode'+#userCode")
public JSONObject getUserAllInfoJsonByUserCode(String userCode){
//func
}

注意:redis查数据时,是不管主题的(即不管value中的值),只管查key中的值,不管是哪个主题下的,都会命中

 

清除指定主题的缓存

@CacheEvict(value = "XXX_cache", allEntries = true)
public String cleanRedisCache() {
return "clean itsm_cache cache success";
}

posted @ 2018-12-14 19:12  点点花飞谢  阅读(137)  评论(0编辑  收藏  举报