64 位 Java VM 运行应用程序速度慢 10 倍
我有一个使用 JarBundler 打包的 Java 应用程序。该应用程序相当消耗 CPU 资源(大量的 Collection.sort() 调用)。
在 Mac OS 上,使用 64 位 JavaApplicationStub 时应用程序运行缓慢且迟缓。此 JavaApplicationStub 文件正在启动 Java 64 位 VM。
我发现了一个旧的 JavaApplicationStub 文件,它只是 32 位的。我将其替换到 Bundle 中,应用程序的运行速度提高了 10 倍! (因此,应用程序运行时会使用 32 位 VM)。
这有什么意义吗?为什么 64 位虚拟机速度这么慢?像这样构建一个应用程序并破解 JavaApplicationStub 文件是否有意义?
建议表示赞赏。
I have a Java app which is packaged up using JarBundler. The app is fairly CPU intensive (lots of big Collection.sort() calls).
On Mac OS, the app runs slow and sluggish when using the 64-bit JavaApplicationStub. This JavaApplicationStub file is launching the Java 64-bit VM.
I found an old JavaApplicationStub file which is 32-bit only. I replaced it in the Bundle, and the app runs 10x faster! (consequently, the 32-bit VM is utilized when the application runs).
Does this make any sense? Why is the 64-bit VM so much slower? Does it make sense to build an app and hack the JavaApplicationStub file like this?
Advise is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅这篇文章了解运行 64 位 JVM 的优点/缺点。总而言之,指针解引用和指针解引用内存解除分配可能需要更长的时间 - 并且您正在使用更大的数据结构(即 64 位,而不是 32 位,这对您没有任何好处,除非您明确使用它们)。
另请参阅这篇相关文章,他们在其中讨论了减少迁移到 64 位时性能高达 85%,这与您所经历的情况一致:
See this post on the benefits/disadvantages of running a 64bit JVM. In summary pointer dereferencing & memory de-allocation can take longer - and you are moving around larger data-structures (i.e. 64, not 32 bit, which serves you no advantage to you unless you are explicity making use of them).
Also see this relevant article, where they discuss decreases in performance of up to 85% when moving to 64bit, which is in-line with what you are experiencing:
64 位并不慢。
尝试:
32 和 64 中的}
并告诉我们您得到什么结果
64 bit ain't slower.
Try:
}
in 32 and 64 and tell us what results you get