我有一个缓存,其中包含查找表中的多个值(约 50 条记录),我想将这些值放入缓存中,并且我不希望它过期。
我的实现如下所示:
static {
cache = CacheBuilder.newBuilder().removalListener(new RemovalListener<String, Record>() {
}).maximumSize(100)
.expireAfterAccess(1, TimeUnit.DAYS) // ??
.build(new CacheLoader<String, Record>() {
@Override
public Record load(String id) throws Exception {
throw new Exception("not cached");
}
});
}
在构造函数中,我检查缓存是否为空,然后从数据库中加载数据:
cache = CacheUtil.getLoadingDeviceCache();
if(cache == null || cache.size() == 0) {
synchronized(this) {
List<Record> allAuthorizedDevices = DB.getAuthorizedDevices();
for (Record record : allAuthorizedDevices) {
try {
cache.put(record.getValue("id").toString(), record);
} catch (DataSetException e) {
}
}
}
}
我能做些什么让它永恒?