Hibernate二级缓存:get使用它吗?
我看到有写Hibernate二级缓存仅在调用load
方法时使用。我找不到关于调用 get
时是否使用它的任何结论性答案,其中 GenericDAO 项目是我们主要集成的用途。
调用org.hibernate.Session.get(Class clazz, Serialized id)
时是否使用二级缓存?
I've seen it written that the Hibernate second-level cache is only used when invoking the load
method. I can't find any conclusive answers about whether it's used when calling get
, which the GenericDAO project we've integrated with uses primarily.
Is the second-level cache used when calling org.hibernate.Session.get(Class clazz, Serializable id)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,当然是
get
使用它。Session.load
生成实体的代理,甚至不检查实体是否存在,因此二级缓存与get
比load 更相关
。Yes, of course it's used by
get
.Session.load
generates a proxy to the entity, without even checking if the entity exists, so the second-level cache is much more relevant forget
than forload
.