如何调整这个 eclipse.ini 文件来提高 eclipse(Helios) 的性能?
这是我的 eclipse.ini 文件
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx384m
我应该添加什么来提高 eclipse 的速度。我有一个 3GB RAM,所以我期待增加分配给 eclipse 的内存。 增加 --launcher.XXMaxPermSize
可以完成这项工作吗? 我读过这篇Eclipse 的最佳 JVM 设置是什么?< /a> 。但是 ini 文件似乎与我的有点不同。我有点怀疑我会损坏我的工作区和其他设置,所以没有使用它。
有人可以建议我在这里添加和更改什么以提高 eclipse 的性能吗
Here's my eclipse.ini file
-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810
-product
org.eclipse.epp.package.java.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx384m
What all should i add to improve the speed of eclipse to this.I have a 3GB Ram so i am looking forward to increase the memory allocated to eclipse.
Would increasing --launcher.XXMaxPermSize
do the job?
I have read this What are the best JVM settings for Eclipse? .But the ini file seems to be a bit different from mine.I was a bit skeptical that i would corrupt my workspace and other settings so didn't play around with it.
Can someone advise me on what to add and change here so as to improve the performance of eclipse
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种选择是确保 Eclipse 使用更新的 JDK 启动。目前,您只要求 Java 版本至少为 1.5。如果您的 Eclipse 确实使用 JDK 1.5 运行,那么使用 Java7 将为您提供更好的性能,而且我怀疑启动性能也是如此。
One option could be to ensure that Eclipse is started with a more current JDK. Currently, you only demand that Java version should be at least 1.5. If your Eclipse is really running with JDK 1.5, going to Java7 will give you a way much better performance, and I suspect start-up performance as well.
给它更多的记忆。
使其类似于 -Xmx2g。
这样,如果 Eclipse 需要更多内存,它将能够使用它,如果不需要,它将继续使用与往常相同的内存量。
Give it more memory.
Make it something like -Xmx2g.
This way if eclipse ever needs more memory it will be able to use it, if not then it will keep using the same amount of memory it always does.