我在我的应用程序中使用guava缓存,这是在hibernate平台上编写的。问题是我的缓存在加载数据时不能很好地工作。删除或添加新数据时,它不会快速更新。
private void initializeCache()
{
CacheLoader<String, List<~My Data Type~>> cacheLoader = new CacheLoader<String, List<~My Data Type~>>()
{
@Override
public List<~My Data Type~> load(String key) throws Exception
{
return loadingCache.get(key);
}
};
this.loadingCache = CacheBuilder.newBuilder().expireAfterAccess(5, TimeUnit.MINUTES).build(cacheLoader);
}
这就是我将数据加载到服务器端的方式,
public List<~My Data Type~> findByIds(final List<String> ids) throws SpiderException
{
final List<~My Data Type~> datas = new ArrayList<>();
if (loadingCache.asMap().isEmpty())
{
final List<~My Data Type~> loaded = loadById(ids);
if (loaded != null && !loaded.isEmpty())
{
loadingCache.putAll(
loaded.stream().collect(Collectors.groupingBy(~My Data Type~::getId, Collectors.toList())));
}
}
final ImmutableMap<String, List<~My Data Type~>> allPresent = loadingCache.getAllPresent(ids);
for (Entry<String, List<~My Data Type~>> myData : allPresent.entrySet())
{
datas.addAll(myData .getValue());
}
return datas;
}
此外,我不在数据保存或删除中使用缓存。有人可以解释一下这个问题的共鸣是什么?这是番石榴缓存的问题吗?