02 May 2009

Eclipse JVM Configuration Tips for Performance

You can increase Eclipse performance on a 1GB+ computer using this JVM (Java Virtual Machine) settings. You must add them in eclipse.ini file after -vmargs parameter:
-Xms512m
-Xmx512m
-XX:PermSize=256m
-XX:MaxPermSize=256m
-Xverify:none
-XX:+UseConcMarkSweepGC
-XX:+CMSClassUnloadingEnabled
Detailed information about them can be found here :)

No comments:

Post a Comment