Hibernate:OOM-Exception,IdentityMap 有问题吗?

发布于 2024-09-26 22:01:53 字数 208 浏览 4 评论 0原文

当加载大量对象时,我收到 OOM 异常。使用探查器分析堆后,我发现 org/hibernate/util/IdentityMap 中有大量内存,它引用了包含数千个条目的 LinkedHashMap。这些物体是用来做什么的?

我真的很感谢各种信息...

alt text

when loading lots of objects, I get a OOM-Exception. After analyzing the heap with a profiler, I see that there's a lot of memory in org/hibernate/util/IdentityMap which references a LinkedHashMap containing thousands of Entrys. What are those objects used for?

I'm really thankful for all kinds of information...

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

惯饮孤独 2024-10-03 22:01:53

这是持久化单元的实体缓存。也称为一级缓存。从数据库加载的所有实体都保存在此缓存中,因此可以从缓存中应答对已知实体的后续请求,而无需发出 SQL 查询。

This is the entity cache of the persistence unit. Also known as first-level cache. All entities loaded from the database are kept in this cache so subsequent requests for an already known entity can be answered from the cache without issuing SQL queries.

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