Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The question dealing with Visual Studio optimizations saved me so much time firing it up and using it I have a hard time going back to Eclipse when I have to do J2EE development. Hence, I was also wondering if people have any tips or tricks to help speed Eclipse up in day to day use.

For information, I'm using the Eclipse version 3.4.1.

share|improve this question
2  
How about the optimization where you "DON'T PAY $2000 FOR A LICENSE" or where you "use it on Linux or Mac... or any OS". <<<>>> FYI, I prefer to use development tools that are cross platform and I also like to use open source as much as possible. – Trevor Boyd Smith Jun 11 '09 at 11:20
1  
I forgot about the optimization where you "don't have to wait 2 bloody hours for it to install and upgrade and upgrade and... snore – Trevor Boyd Smith Jun 11 '09 at 11:22
3  
> Trevor : This question is not meant to provoke an IDE war. At work, I use both Eclipse and Visual Studio, and love both of them for a ton of different reasons. This question does not compare them by any means, it just asks for optimization tricks for one whereas the other has already been dealt with: stackoverflow.com/questions/8440/visual-studio-optimizations. I don't care about the price, or the cross-platform part. I only care about Eclipse optimizations (see the title...) – jothetomato Jun 11 '09 at 12:39

6 Answers

up vote 20 down vote accepted
+50

There are:

  • system optimizations: eclipse.ini
  • shortcuts optimizations:
    • Quick Access (Ctrl+3) alt text
      (the mother of all shortcuts! With it, you can access almost everything in Eclipse)
    • Quick Fix (you should make sure it has a convenient shortcut attached to it) alt text
  • launchers optimizations : save them with your projects and do not forget to uncheck the option "Delete configurations when associated resource is deleted" in the "Run/Launching/Launch Configuration" preference panel:

And then there are the configuration of:

share|improve this answer
1  
Looks like your eclipse badge is on its way. Congrats! – Michael Myers Jun 5 '09 at 19:28
@mmyers, thank you. It is due since 12:00 GMT, but I guess it is only computed at 0:00GMT. Still 3h30 to wait from the time of this comment ;) – VonC Jun 5 '09 at 20:39
You miss some obvious optimization like uninstall Mylyn, disable p2, etc. They remove feature, but make startup faster. – J-16 SDiZ Jun 11 '09 at 4:31
1  
Thanks for Ctrl+3! – Andreas_D Jul 30 '09 at 15:34
1  
@axcdnt I agree: stackoverflow.com/a/4105518/6309 – VonC Apr 2 at 17:45
show 3 more comments

I think the best way to learn about eclipse shortcuts is to use MouseFeed. MouseFeed is a plugin which shows the corresponding shortcut keys whenever the user uses the mouse to perform some actions. Common tasks and the shortcuts for them can be acquired within a few days. Mousefeed can be found at http://www.mousefeed.com/. Hope this helps.

share|improve this answer

The cheapest and fastest optimization I ever did for Eclipse is to buy extra 2G of RAM for my dev machine.

share|improve this answer

one easy thing to do is to allocate more memory to eclipse for big projects using options like: -J-Xms512m -J-Xmx1024m

This is not eclipse specific though.

share|improve this answer

Eclipse has LOTS of shortcuts, but most of them are not straightforward. E.g.: shift-alt-X, then T to run a JUnit test.

Sometimes you just need to try and see if it works.

I found the editor arrow-key-macros particularly useful, but you need to play with them yourself to understand it: alt+shift+{left,right} to select an expression for refactoring, ctrl+alt+down to duplicate a line, ctrl-shift-{up,down} to jump to previous definition...

The most powerful combinations are usually the alt-shift-something (especially for refactoring).

Look for "eclipse cheat sheets" on google to find some more inspiration.

share|improve this answer

if you are looking to remove the sluggishness from the app, memory management is obviously important. besides increasing the maximum heap settings and other command line tinkering, there have been eclipse plugins developed in the past that claim to prevent windows from swapping out eclipse RAM. 'Keep Resident' hasnt been updated since 2004, but it is still on the eclipse site and i have heard tell that it works with 3.4. a review is written here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.