Hibernate二级缓存:get使用它吗?

发布于 2024-12-09 16:14:31 字数 284 浏览 0 评论 0原文

我看到有写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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绾颜 2024-12-16 16:14:31

是的,当然是get使用它。 Session.load 生成实体的代理,甚至不检查实体是否存在,因此二级缓存与 getload 更相关

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 for get than for load.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文