Tunning Eclipse
5 July 2008Sometimes you might feel that your Eclipse is sluggish and performance tunning is required. I will address this issue in this post.
Implement the following for better performance:
- Increase your min/max memory settings from 40/256 to 256/512 or higher. You might have to experiment with the min/max setting but increasing the initial memory heap to 128 when Eclipse starts should help.
- Disabling the code folding feature also helps. To disable this, go to Eclipse > Preferences > Java > Editor > Folding and uncheck “Enable Folding” checkbox.
- Disabling the Code Assist Auto-Activation also improved the performance. This means no more code assist popups when you type “.” to invoke a list of class method/properties. Go to Eclipse > Preferences > Java > Editor > Code Assist and uncheck Auto-Activation checkbox.
- If you are using MyEclipse’s plugins you might consider disabling (temporarily until you get more memory) it’s many validators Eclipse > Preferences > MyEclipse > Validation. The DTD, HTML, JSP, XML validators all use up memory and can slow the system down.
I hope this helps.
Related Posts:
Top Of Page | Trackback
If you found this page useful, consider linking to it. Simply copy and paste the code below into your web site.
It will look like this: Tunning Eclipse
Why use Eclipse if you are going to turn off features like folding and especially auto complete? Without autocomplete, I might as well go back to Vi and Ant.