我在Spring 4.1.4应用程序中使用了最新的Ehcache。我所拥有的是:
p
我想要实现的是,联系人存储在缓存中,当我再次调用class Contact{
int id;
int revision;
}
@Cacheable("contacts")
public List<Contact> getContactList(List<Integer> contactIdList) {
return namedJdbc.queryForList("select * from contact where id in (:idlist)", Collections.singletonMap("idlist", contactIdList));
}
@CachePut(value="contact", key = "id")
public void updateContact(Contact toUpdate) {
jdbctemplate.update("update contact set revision = ? where id = ?", contact.getRevision(), contact.getId());
}
方法时,从缓存中检索所有已缓存getContactList
的联系人应该正常查询其他的,然后缓存。然后,此缓存应在更新时更新缓存的联系人实体。
我使用普通的Spring JDBC和Ehcache,没有JPA,也没有Hibernate。
答案 0 :(得分:0)
不要认为这是可能的。 List<Integer>
将是getContactList
返回值的关键,将保存在缓存中。
因此,除非输入到getContactList
的ID列表包含与先前调用之一完全相同的ID,否则它将是缓存未命中数据,并且将从数据库中提取数据。 (注意:如果两个列表完全包含相同的元素并且顺序相同,则认为两个列表相等)
一种选择是将方法getContactList(List<Integer> contactIdList)
更改为getContact(Integer id)
- 在这种情况下,构建缓存可能需要一段时间,但是一旦给定ID的联系人在缓存中,DB将不会用于在将来的电话中重新获取它。
虽然不优雅,但另一种选择是在getContactList
方法中手动执行缓存。
答案 1 :(得分:0)
为我工作。这是我的答案的链接。 https://stackoverflow.com/a/60992530/2891027
TL:DR
@Cacheable(cacheNames = "test", key = "#p0")
public List<String> getTestFunction(List<String> someIds) {
答案中有关我的环境的更多信息。