4.1.4应用程序中使用了最新的Ehcache.我所拥有的是:
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方法时,从缓存中检索id已经缓存的所有联系人,并且应该正常查询其他联系人然后缓存.然后,此缓存应在更新时更新缓存的联系人实体.
我使用普通的Spring JDBC和Ehcache,没有JPA,也没有Hibernate.
不要以为这是可能的.列表与LT;整数>将反对getContactList的返回值的关键字保存在Cache中.
因此,除非输入到getContactList的ID列表包含与先前调用之一完全相同的ID,否则将是缓存未命中并且将从DB获取数据. (注意:如果两个列表完全包含相同的元素并且顺序相同,则认为它们是相同的)
一种选择是改变你的方法getContactList(名单<整数> contactIdList)到getContact(整数ID) – 在这种情况下,它可能需要一段时间来构建高速缓存,但一旦对于给定ID的联系是在缓存中,DB不会用于在将来的电话中重新获取它.
虽然不优雅,但另一种选择是在getContactList方法中手动进行缓存.
翻译自:https://stackoverflow.com/questions/31220740/spring-cacheable-methods-with-lists