【发布时间】:2011-12-13 11:00:57
【问题描述】:
Google Guava 的 CacheBuilder 允许使用过期键创建 ConcurrentHash,允许在固定 tiemout 后删除条目。但是我只需要缓存某个类型的一个实例。
使用 Google Guava 在固定超时内缓存单个对象的最佳方法是什么?
【问题讨论】:
Google Guava 的 CacheBuilder 允许使用过期键创建 ConcurrentHash,允许在固定 tiemout 后删除条目。但是我只需要缓存某个类型的一个实例。
使用 Google Guava 在固定超时内缓存单个对象的最佳方法是什么?
【问题讨论】:
我会使用 Guava 的 Suppliers.memoizeWithExpiration(Supplier delegate, long duration, TimeUnit unit)
public class JdkVersionService {
@Inject
private JdkVersionWebService jdkVersionWebService;
// No need to check too often. Once a year will be good :)
private final Supplier<JdkVersion> latestJdkVersionCache
= Suppliers.memoizeWithExpiration(jdkVersionSupplier(), 365, TimeUnit.DAYS);
public JdkVersion getLatestJdkVersion() {
return latestJdkVersionCache.get();
}
private Supplier<JdkVersion> jdkVersionSupplier() {
return new Supplier<JdkVersion>() {
public JdkVersion get() {
return jdkVersionWebService.checkLatestJdkVersion();
}
};
}
}
今天,我会以不同的方式编写这段代码,使用 JDK 8 方法引用和构造函数注入来获得更简洁的代码:
import java.util.concurrent.TimeUnit;
import java.util.function.Supplier;
import javax.inject.Inject;
import org.springframework.stereotype.Service;
import com.google.common.base.Suppliers;
@Service
public class JdkVersionService {
private final Supplier<JdkVersion> latestJdkVersionCache;
@Inject
public JdkVersionService(JdkVersionWebService jdkVersionWebService) {
this.latestJdkVersionCache = Suppliers.memoizeWithExpiration(
jdkVersionWebService::checkLatestJdkVersion,
365, TimeUnit.DAYS
);
}
public JdkVersion getLatestJdkVersion() {
return latestJdkVersionCache.get();
}
}
【讨论】: