我有每天从db加载的所有客户详细信息的缓存。但在加载每日客户详细信息之前,我需要删除缓存中的所有先前条目。
目前我在做:
public enum PeriodicUpdater {
TIMER;
private final AtomicBoolean isPublishing = new AtomicBoolean(false);
private final long period = TimeUnit.DAYS.toMillis(1);
@Autowired
@Qualifier("TestUtils") @Setter
private TestUtils testUtils;
public synchronized boolean initialize() {
return initialize(period, period);
}
boolean initialize(long delay, long period) {
if (isPublishing.get()) {
return false;
}
TimerTask task = new TimerTask() {
@Override public void run() {
try {
String path = getFile();
if(TestUtils.getFileNameCache().getIfPresent(path) == null) {
TestUtils.setFileNameCache(testUtils.buildFileCache(path));
}
} catch (Exception e) {
log.warn("Failed!", e);
}
}
};
Timer timer = new Timer("PeriodicUpdater", true); // daemon=true
timer.schedule(task, delay, period);
isPublishing.set(true);
return true;
}
}
我在这里使用缓存:
public class TestUtils {
private static Cache<String, Map<String, List<String>>> fileCache = CacheBuilder
.newBuilder()
.expireAfterWrite(4, TimeUnit.DAYS)
.build();
public TestUtils() {
String path = getFile();
fileNameCache = buildFileCache(path);
}
public Cache<String, String> buildFileCache(String path) {
Cache<String, String> fileList = CacheBuilder
.newBuilder()
.expireAfterWrite(4, TimeUnit.DAYS)
.build();
fileList.put(path, new Date().toString());
return fileList;
}
/* doing some stuff with the cache */
}
这是正确的吗?我没有看到缓存被清除。如果我错了,有人可以纠正我吗?
答案 0 :(得分:1)
Cache.invalidateAll()
将清除当前缓存中的所有条目。
也就是说,如果您打算每天重新加载条目,为什么您每四天只会使缓存的内容到期? (.expireAfterWrite(4, TimeUnit.DAYS)
。只需将4
更改为1
,即可每天重新加载一次内容。
此外,正如Adrian Shum所说,你在滥用枚举。 public enum PeriodicUpdater
几乎肯定是public class PeriodicUpdater
。