我之前在我的应用程序中实现了缓存,与三个单独的 get 方法一起使用。这些 get 方法是getAllProfiles()
、getProfilesByID()
和getProfileByFields()
。因此,我的代码如下所示:
private LoadingCache<int[], List<Profile>> loadingCache = CacheBuilder.newBuilder()
.refreshAfterWrite(5, TimeUnit.MINUTES)
.expireAfterAccess(5, TimeUnit.MINUTES)
.maximumSize(100).build(
new CacheLoader<int[] ids, List<Profile>>() {
@Override
public List load(int[] ids) throws Exception {
return profileDAO.getProfilesById(ids);
}
}
);
private LoadingCache<Integer, List<Profile>> loadingCache2 = CacheBuilder.newBuilder()
.refreshAfterWrite(5, TimeUnit.MINUTES)
.expireAfterAccess(5, TimeUnit.MINUTES)
.maximumSize(100).build(
new CacheLoader<Integer, List<Profile>>() {
@Override
public List<Profile> load(Integer size) throws Exception {
return profileDAO.getAllProfiles(size);
}
}
);
private LoadingCache<Profile, List<Profile>> loadingCache3 = CacheBuilder.newBuilder()
.refreshAfterWrite(5, TimeUnit.MINUTES)
.expireAfterAccess(5, TimeUnit.MINUTES)
.maximumSize(100).build(
new CacheLoader<Profile, List<Profile>>() {
@Override
public List<Profile> load(Profile profile) throws Exception {
return profileDAO.getProfileByFields(profile);
}
}
);
public ProfileManagerImpl(ProfileDAO profileDAO) {
this.profileDAO = profileDAO;
}
public List<Profile> getAllProfiles(Integer size) throws Exception {
return loadingCache2.get(size);
}
public List<Profile> getProfilesById(int[] idArray) throws Exception {
return loadingCache.get(idArray);
}
public List<Profile> getProfileByFields(Profile profile) throws Exception {
return loadingCache3.get(profile);
}
然而,为了简化我的工作,我需要getAllProfiles()
为整个表创建一个在启动时使用 , 创建的缓存。然后,所有三种方法都将使用这个缓存来处理。
我想我可以重用 loadCache2 的代码来首先创建缓存:
private LoadingCache<Integer, List<Profile>> loadingCache2 = CacheBuilder.newBuilder()
.refreshAfterWrite(5, TimeUnit.MINUTES)
.expireAfterAccess(5, TimeUnit.MINUTES)
.maximumSize(100).build(
new CacheLoader<Integer, List<Profile>>() {
@Override
public List<Profile> load(Integer size) throws Exception {
return profileDAO.getAllProfiles(size);
}
}
);
并传入 null 作为大小,因此 DAO 上的 SQL 语句将是“SELECT * FROM Profiles”。问题将来自其他方法;鉴于不同的输入要求,我不知道如何将这些方法指向此缓存。以前有没有人做过这样的事情?
编辑:
正如 Louis Wasserman 所建议的,我正在制作一个将 Object 作为通用键的 Cache 对象。从那里,服务应该使用 if 语句来检测输入对象类型并使用适当的方法来检索缓存的内容,具体取决于所使用的方法。
不过,到目前为止,它在 getAllProfiles 上失败了,出现了一个空指针异常,所以我需要弄清楚这一点。
根据下面的代码,看起来我走在正确的轨道上吗?对于这个对象,我使用的是 Cache 而不是 LoadingCache:
public Cache<Object, List<Profile>> cache =
CacheBuilder.newBuilder()
.refreshAfterWrite(5, TimeUnit.MINUTES)
.expireAfterWrite(5, TimeUnit.MINUTES)
.build(new CacheLoader<Object, List<Profile>>() {
@Override
public List<Profile> load(Object k) throws Exception {
if (k instanceof Integer) {
return profileDAO.getAllProfiles((Integer) k);
}
else if (k instanceof int[]) {
return profileDAO.getMultipleProfiles((int[]) k);
}
else if (k instanceof Profile)
return profileDAO.getProfileByFields((Profile) k);
}
});
public List<Profile> getAllProfiles(Integer size) throws Exception {
return cache.getIfPresent(size);
}