What are the best JVM settings you have found for running eclipse.
Thanks!
|
53
|
What are the best JVM settings you have found for running eclipse. Thanks!
|
|||
|
|
|
|
Eclipse Galileo 3.5 and 3.5.1 settingsCurrently (November 2009), I am testing with jdk6 update 17 the following configuration set of options (with Galileo -- eclipse 3.5.x, see above for 3.4): (of course, adapt the relative paths present in this eclipse.ini to the correct paths for your setup) Note: for eclipse3.5, replace
eclipse.ini 3.5.1
See also my original answer above for more informations. Changes (from July 2009)
CaveatsThere was a bug with ignored breakpoints actually related to the JDK. MaxNote the usage of:
As documented in the Eclipse Wiki,
As detailed in this entry:
|
||||||
|
|
|
XX:+UseParallelGC that's the most awesome option ever!!! |
||
|
|
|
|
If you're going with jdk6 update 14, I'd suggest using using the G1 garbage collector which seems to help performance. To do so, remove these settings: -XX:+UseConcMarkSweepGC and replace them with these: -XX:+UnlockExperimentalVMOptions |
||
|
|
|
|
If you are using Linux + Sun JDK/JRE 32bits, change the "-vm" to:
If you are using Linux + Sun JDK/JRE 64bits, change the "-vm" to:
That's working fine for me on Ubuntu 8.10 and 9.04 |
|||
|
|
|
|
Eclipse Ganymede 3.4.2 settingsFor more recent settings, see Eclipse Galileo 3.5 settings below. JDKThe best JVM setting always, in my opinion, includes the latest JDK you can find (so for now, jdk1.6.0_b07 up to b16, except b14 and b15) eclipse.iniEven with those pretty low memory settings, I can run large java projects (along with a web server) on my old (2002) desktop with 2Go RAM.
See GKelly's SO answer and Piotr Gabryanczyk's blog entry for more details about the new options. MonitoringYou can also consider launching:
As said in a previous question about memory consumption. |
||||||||||
|
|
|
-showlocation To make it easier to have eclipse running twice, and know which workspace you're dealing with |
||
|
|
|
|
-vm To specify which java version you are using, and use the dll instead of launching a javaw process |
||
|
|
|
|
Eclipse likes lots of RAM. Use at least -Xmx512M. More if available. |
||
|
|
|
|
Here's what I use (though I have them in the shortcut instead of the settings file): eclipse.exe -showlocation -vm "C:\Java\jdk1.6.0_07\bin\javaw.exe" -vmargs -Xms256M -Xmx768M -XX:+UseParallelGC -XX:MaxPermSize=128M |
||
|
|