Commit b35bf315 by Future

成员列表获取去除缓存

parent 72549020
......@@ -73,13 +73,13 @@ public class EhcacheService {
public void delEhCacheConversation(Long id) {
}
@Cacheable(value = "business", key = "#key")
// @Cacheable(value = "business", key = "#key")
public List<ImConversationMembers> getEhCacheMember(String key, Long id) {
return imConversationMembersService.list(new QueryWrapper<ImConversationMembers>().lambda()
.eq(ImConversationMembers::getFkConversationId, id));
}
@CacheEvict(value = "business", key = "#key")
// @CacheEvict(value = "business", key = "#key")
public void delEhCacheMember(String key) {
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment