Java Instrumentation - 有性能下降吗?

发布于 2024-10-18 14:29:15 字数 196 浏览 1 评论 0原文

使用 Java Instrumentation 是否会减少JVM运行时的性能如何?我用它来获取对象的(浅)大小,我想知道它是否会影响性能。

Does using Java Instrumentation decrease the performance of the JVM running it in any way? I'm using it for getting the (shallow) size of an object, and I'm wondering whether it affects the performance.

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

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

发布评论

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

评论(1

给我一枪 2024-10-25 14:29:15

是的,任何额外的代码都会减慢执行速度。这在很大程度上取决于代码的作用,如果您只记录对象大小,则性能影响将可以忽略不计(在大多数情况下,如果不是全部情况)。
检测是在类文件加载后直接完成的,因此它仅在第一次发生,对于运行时间较长的程序,它不会产生任何进一步的影响。如果您从虚拟机中删除代理,它肯定不会再产生影响。

Yes, any additional code slows down the execution. It strongly depends what the code does, if you just log object sizes the performance impact will be negligible (in most if not all cases).
The instrumentation is done directly after the class file is loaded, so it happens only the first time, on longer running programs it shouldn't have any further impact. If you remove the agent from you VM it surely will no longer have an influence.

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