Which tricks do you know to make the experience with Eclipse faster?
For instance: I disable the all the plugins I don't need (Mylyn, Subclipse, …).
Instead of using a plugin for Mercurial I configure TortoiseHG as an external tool.
|
26
|
Which tricks do you know to make the experience with Eclipse faster? For instance: I disable the all the plugins I don't need (Mylyn, Subclipse, …). Instead of using a plugin for Mercurial I configure TortoiseHG as an external tool. |
|||
|
|
|
|
I agree with the previous answers: The three most influential factors for Eclipse speed are:
Note:
|
|||
|
|
|
|
Make sure that you're using the Sun JVM to run Eclipse. On Linux, particularly Ubuntu, Eclipse is installed by default to use the open source GCJ, which has drastically poorer performance. Use |
|||
|
|
|
I give it a ton of memory (add a -xMx whateverM switch to the command that starts it) and try to avoid quitting and restarting it- I find the worst delays are on startup, so giving it lots of RAM lets me keep going longer before it crashes out. |
|||
|
|
|
Close any open projects which are not in current use. Try to switch off the auto publish mode during development. |
|||
|
|
|
Eclipse loads plug-ins lazily, and most common plug-ins, like Subclipse, don't do anything if you don't use them. They don't slow Eclipse down at all during run time, and it won't help you to disable them. In fact, Mylyn was shown to reduce Eclipse's memory footprint when used correctly. I run Eclipse with tons of plug-ins without any performance penalty at all.
It's not only the memory that you need to increase with the -Xmx switch, it's also the perm gen size. I think that problem was solved in Eclipse 3.4. |
|||
|
|
|
|
Another performance boost can be gained by disabling label decorations (Windows -> Preferences; General -> Appearance -> Label Decorations) and by disabling unused capabilities on startup (Windows -> Preferences; General -> Startup and Shutdown). You may also get additional performance by choosing a different garbage collection strategy depending on your JVM. If you're fed up with restart cycles you could use JavaRebel from ZeroTurnaround. That will shorten your time spend on server/client restarts. |
|||
|
|
|
|
One more trick is to disable automatic builds. |
|||
|
|
|
|
The only real way to hasten Eclipse with the standard plug-ins is to give it more memory and in some cases access to a faster storage space / defragmented hard drive. Beyond that there is not much you can do performance-wise: most standard plug-ins do not have a continuous runtime cost, even Mylyn is relatively fast. Upgrading to the latest JVM supported on your machine may help as well. Some people downgrade to older Eclipse versions to get better performance. It may also make sense to use Eclipse classic instead of the official releases. |
|||
|
|
|
|
I've disabled all unused options in Windows > Preferences > General and it has a huge positive impact on performance, eclipse is still slow when switching tabs, I don't want to increase memory, but it's a lot faster when scrolling. Thx for the tips. |
|||
|
|