我正在使用 Google GuavaCacheBuilder
创建一个Cache
实例。我的代码如下所示:
return CacheBuilder.newBuilder()
.initialCapacity(initialCapacity)
.expireAfterAccess(expirationInterval, TimeUnit.SECONDS)
.removalListener(LOGGING_AUTOEVICTION_ONLY_REMOVAL_LISTENER)
.build();
顾名思义,我的移除监听器是:
private static final RemovalListener<MyKey, MyRecord> LOGGING_AUTOEVICTION_ONLY_REMOVAL_LISTENER
= new RemovalListener<MyKey, MyRecord>() {
@Override
public void onRemoval(RemovalNotification<MyKey, MyRecord objectObjectRemovalNotification) {
if (objectObjectRemovalNotification.wasEvicted()) {
log.debug("Entry evicted from cache: {} - Reason: {}", objectObjectRemovalNotification, objectObjectRemovalNotification.getCause());
}
}
};
最后,我只get
使用我的缓存条目get(K key, Callable<? extends V> valueLoader)
这是问题所在:使用上面的代码,我看到以下日志输出:
19:08:03.287 DEBUG [MyCache] - Entry evicted from cache: MyKey[123]=MyRecord@43ee148b - Reason: SIZE
当我没有maximumSize()
在 CacheBuilder 调用中使用时,为什么记录会从我的缓存中被逐出?我怀疑这与“体重”有关。如果是这样,我需要知道什么maxWeight()
才能在到期时间之前不驱逐缓存条目?
注意我知道Google Guava 网站上的Caches Explained 。