使用 Spring 的缓存抽象,如何让缓存异步刷新条目,同时仍返回旧条目?
我正在尝试使用 Spring 的缓存抽象来创建一个缓存系统,在相对较短的“软”超时之后,缓存条目可以刷新。然后,当它们被查询时,返回缓存的值,并启动异步更新操作来刷新条目。我也会
Guava 的缓存构建器允许我指定缓存中的条目应在一定时间后刷新。然后可以用异步实现覆盖缓存加载器的 reload() 方法,允许返回陈旧的缓存值,直到检索到新的缓存值。但是,spring 缓存似乎不使用底层 Guava 缓存的 CacheLoader
是否可以使用 Spring 的缓存抽象来进行这种异步缓存刷新?
编辑澄清:使用 Guava 的 CacheBuilder,我可以使用 refreshAfterWrite() 来获得我想要的行为。例如来自Guava Caches Explained:
LoadingCache<Key, Graph> graphs = CacheBuilder.newBuilder()
.maximumSize(1000)
.refreshAfterWrite(1, TimeUnit.MINUTES)
.build(
new CacheLoader<Key, Graph>() {
public Graph load(Key key) { // no checked exception
return getGraphFromDatabase(key);
}
public ListenableFuture<Graph> reload(final Key key, Graph prevGraph) {
if (neverNeedsRefresh(key)) {
return Futures.immediateFuture(prevGraph);
} else {
// asynchronous!
ListenableFutureTask<Graph> task = ListenableFutureTask.create(new Callable<Graph>() {
public Graph call() {
return getGraphFromDatabase(key);
}
});
executor.execute(task);
return task;
}
}
});
但是,我看不到使用 Spring 的 @Cacheable 抽象来获取 refreshAfterWrite() 行为的方法。