synchronized (this.cacheMap) {
this.cacheNames = Collections.emptySet();
this.cacheMap.clear();
Set cacheNames = new LinkedHashSet<>(caches.size());
for (Cache cache : caches) {
String name = cache.getName();
this.cacheMap.put(name, decorateCache(cache));
cacheNames.add(name);
}
this.cacheNames = Collections.unmodifiableSet(cacheNames);
}
}
getCache()
获取对应的配置 其中getMissingCache是获取没有定义的cache
public Cache getCache(String name) {
Cache cache = this.cacheMap.get(name);
if (cache != null) {
return cache;
}
else {
// Fully synchronize now for missing cache creation…
synchronized (this.cacheMap) {
cache = this.cacheMap.get(name);
if (cache == null) {
cache = getMissingCache(name);
if (cache != null) {
cache = decorateCache(cache);
this.cacheMap.put(name, cache);
updateCacheNames(name);
}
}
return cache;
}
}
}
getMissingCache()
如果此类缓存不存在或无法动态创建,则返回具有指定 name或null的缺失缓存。 如果本机提供程序支持它,则可能会在运行时创建一些缓存。如果按名称查找不会产生任何结果,则子类有机会在运行时注册此类缓存。返回的缓存将自动添加到此实例。
配置使用
构造方法
public RedisCacheManager(RedisCacheWriter cacheWriter, RedisCacheConfiguration defaultCacheConfiguration,
Map<String, RedisCacheConfiguration> initialCacheConfigurations, boolean allowInFlightCacheCreation) {
this(cacheWriter, defaultCacheConfiguration, allowInFlightCacheCreation);
Assert.notNull(initialCacheConfigurations, “InitialCacheConfigurations must not be null!”);
this.initialCacheConfiguration.putAll(initialCacheConfigurations);
}
cacheWriter: 操作redis的对象
defaultCacheConfiguration: 缓存默认配置
initialCacheConfigurations: 自定义缓存配置
allowInFlightCacheCreation: 如果设置为 false,则此缓存管理器仅限于初始缓存配置,并且不会在运行时创建新缓存。
@Bean
public RedisCacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
//用户自定义缓存
Map<String, RedisCacheConfiguration> cacheConfigurations = new HashMap<>();
cacheConfigurations.put(ShiroSecurityConstants.SHIRO_ACTIVE_SESSIONS_NAME, RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofDays(30)));
cacheConfigurations.put(ShiroSecurityConstants.SHIRO_AUTHORIZATION_NAME, RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofDays(30)));
cacheConfigurations.put(ShiroSecurityConstants.TOKEN_CACHE_NAME, RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofMinutes(5)));
cacheConfigurations.put(ShiroSecurityConstants.VERIFICATION_CODE_CACHE_NAME, RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofMinutes(5)));
//默认缓存配置
RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig()
.entryTtl(Duration.ofMinutes(5)); // 设置缓存有效期5分钟
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Go语言工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Go语言全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Golang知识点,真正体系化!
由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新
如果你觉得这些内容对你有帮助,可以添加V获取:vip1024b (备注Go)
一个人可以走的很快,但一群人才能走的更远。不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎扫码加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
712988227537)]
一个人可以走的很快,但一群人才能走的更远。不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎扫码加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!