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.
|
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. |
|||||||||||||||||||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I agree with the previous answers: The three most influential factors for Eclipse speed are:
Note:
|
|||||||||||||||||||||
|
|
Add -Xverify:none to your eclipse.ini. It will cutdown your eclipse startup time considerably (50% in my case if not more). This will tell the VM not to validated all the .class files it is loading. |
|||||||||||||||||||
|
|
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 |
|||||||||
|
|
Go to "Windows->Preferences->Validation," and uncheck any validators you don't want, or need. For Eclipse 3.7, you use "Windows->Preferences->General->Startup and Shutdown." |
||||
|
|
|
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. |
||||
|
|
|
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. |
|||||
|
|
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 spent on server/client restarts. |
|||||
|
|
Thanks for the hints. These options (mentioned above) helped me a lot: Windows: Increasing memory & regarding to my updated Java version in eclipse.ini:
Linux / Ubuntu: Using
|
|||||||||||
|
|
There is another thing that really speeds up eclipse on both Windows and especially Linux - putting JVM in ramdisk. For Windows you can use commercial ramdisk driver from Qsoft http://members.fortunecity.com/ramdisk/RAMDisk/ramdriv001.htm For linux use any of the methods described in numerous articles on the net. It is important to give additional space to the ramdisk that is 10% bigger than size of JVM. Check it out it really makes a difference. |
|||||||||||||
|
|
Disable virus scanners, or at least configure any virus scanner to not scan JAR files on read access. |
||||
|
|
|
While not directly related to Eclipse: If you're running Win-7 (and presumably Vista), be sure to disable the file indexing of your workspace folder if you stuff i it in the default place - your home folder. Windows by default indexes everything in you home folder, and it's normally just a waste for your workspace. (Right click the workspace folder in explorer ,Properties->Advanced) |
||||
|
|
Along with the latest software (latest eclipse and java) and more Ram, you may need to
|
||||
|
|
|
I implemented a plug-in to configure which features to be loaded in runtime to improve the performance and reduce the conflict among different plug-ins. You maybe install many features into your eclipse, such as Android development tool, C/C++ development tool, PHP, SVN, Git and Clearcase plug-ins. Hence eclipse is heavy and cost large memory, and some of them are not often used. So you could use my tool to create different runtime policies, such as one has Android, Git and base eclipse, another one contains C/C++, SVN and base eclipse. Next time eclipse would only load the specified features if you're using the policy only has Android and Git. Welcome to try it and give me the feedback. :) The name of that tool is Equinox Advanced Configurator. |
||||
|
|
|
not to be underrated is having a fast machine. 4-8 GB of RAM, Solid State Disk and a decent processor... and who0o0om there you go. |
||||
|
|
|
Well if you are developing a GWT application using eclipse, then this is the way Out of memory error in Eclipse Also remember to add the same VM arguments to the hosted mode configuration. |
||||
|
|
|
Make effort to configure your build path. Code completion use a lot of memory if it has to go through your whole project folder.
|
||||
|
|
|
I also tuned vmargs and stuff. But what really sped up Eclipse on Windows is the "proper" configuration of the anti-virus software. You have to disable the on-demand scanning of packed files. jar files, and many files related to java are packed with PKZIP algorithm to spare space. Because Eclipse uses tons of java files, an anti-virus attempts to individually unpack and scan every one of them. So for Windows platform: turn off the on-demand scanning of packed files, otherwise Eclipse will be unusably slow. Please keep in mind, that disabling this unfortunately makes your system weaker against attacks, most of the malware use packers. |
||||
|
|
|
In special cases. Bad performance can be due to corrupt h2 or nwire databases. Read Five tips for speeding up Eclipse PDT and nWire for more info. Where I work, we are dependent on a VM to run debian. I have installed another eclipse version on the VM for testing purpouses, but this sometimes creates conflicts if I have the other eclipse version running. There is a shared folder which both of the eclipse versions shares. I accidentally left the debian eclipse installation running in the background once and that gave me corrupt db files. |
||||
|
|
|
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. |
||||
|
|
|
If you use maven and ivy do check out their consoles in case they are hogging processing during builds. I use ivy and on top of that I have certain jars (internal) changing with same version so it have to workout all the time to fetch them. If you have defined you project on a network drive then you will also experience lag during build/read/write type of processes. Disable/Uninstall plugins you don't need. close perpective that you don't need close unused db connections |
||||
|
|