咖啡因有expiresAfterWrite
查看最后写入时间的方法。我希望它只查看创建时间。因此,当第一个条目出现时,条目将在固定时间后过期,而无需查看此条目的更新次数。这可能吗?
问问题
4387 次
1 回答
12
可以,但需要使用更高级的Expiry
api。在下面的示例中,新创建的条目具有固定的 5 分钟生命周期。这是通过返回currentDuration
更新或读取来完成的。
LoadingCache<Key, Graph> graphs = Caffeine.newBuilder()
.expireAfter(new Expiry<Key, Graph>() {
public long expireAfterCreate(Key key, Graph graph, long currentTime) {
return TimeUnit.MINUTES.toNanos(5);
}
public long expireAfterUpdate(Key key, Graph graph,
long currentTime, long currentDuration) {
return currentDuration;
}
public long expireAfterRead(Key key, Graph graph,
long currentTime, long currentDuration) {
return currentDuration;
}
})
.build(key -> createExpensiveGraph(key));
于 2018-08-10T06:17:56.810 回答