平台兼容Caffeine和Redis两种缓存模式,大型应用使用Redis,小型应用使用Caffeine,最外层使用qlmCacheTools进行封装,例如:
public void put(String key, String value){
if ("Redis".equals(QLMContants.cacheMode)){
redisutils.set(key,value);
}
else if ("Caffeine".equals(QLMContants.cacheMode)){
CaffeineUtils.put(key,value);
}
}
其中cacheMode来自配置文件。基本上所有操作都有对应方法,但是Redis有
public Set<K> keys(K pattern),就是按模式搜索,这个在平台上实际应用有查询在线用户,可惜的是Caffeine自己没有对应方法。这个只能老规则,自己写一个
Set<String> keys = momentaryStore.asMap().keySet();
for (String key : keys) {
if (key.indexOf(pattern)>=0) {
// 处理匹配的键
keys.add(key);
}
}
其中的momentaryStore:
protected static Cache<String, Object> momentaryStore =
Caffeine.newBuilder()
.expireAfterWrite(24*60, TimeUnit.MINUTES)
.maximumSize(200000)
.build();