The memory usage of Eclipse 3.4 is through the roof to the point where it's becoming an issue.

I have a simple BlackBerry project loaded and the usage skyrockets to nearly 400 MB, sometimes higher. Is there something that can be done to bring it down?

link|improve this question

feedback

5 Answers

up vote 11 down vote accepted

Eclipse 3.4 can consume a lot more memory than the previous versions, courtesy the spellchecker plug-in.

You can switch off the plug-in by going to Window -> Preferences -> General -> Editors -> Text Editors -> Spelling, and unchecking the box title 'Enable spell checking'.

Of course, the tips offered to use larger heap sizes and better garbage collectors would do you good as well.

link|improve this answer
That did the trick. – AngryHacker Oct 12 '09 at 5:21
feedback

While you probably could tinker with the configuration, removing various plugins etc, it's likely to be more cost effective to buy more memory. How much do you currently have? I would consider a developer machine with less than 2GB of memory to be under spec, and I suspect many people would double that...

link|improve this answer
Couldn't agree more. 1GB of RAM is as little as $20-30. How much is your time worth? Getting a collection of plugins to work in Eclipse is hard work enough without fidding with it (arguably) unnecessarily. – cletus Sep 29 '09 at 6:07
1  
I am maxed out at 2GB (it's an old laptop). The problem is that once the BlackBerry simulator is loaded, Visual Studio (web services) and Chrome (to look stuff up on the web), the laptop comes to a crawl. But Eclipse is by far the biggest offender. It was not so bad with the 3.3 or the 3.2 versions. – AngryHacker Sep 29 '09 at 6:10
4  
Throw hardware at a software problem... spoken like a true programmer :) – György Andrasek Sep 29 '09 at 8:21
1  
@Jurily: It's a simple matter of efficiency. If you can put more memory in, it's usually a much better use of resources than trimming a few meg here and a few meg there. – Jon Skeet Sep 29 '09 at 8:34
3  
@finnw: What makes you think that the workload of a developer machine is anything like the workload of the user's machine? Many applications don't need anything like as much in the way of resources as an IDE. You should certainly test your application on a low-spec machine, but that doesn't mean developing it on one. In fact, you're already apparently assuming a client-side app. If I'm developing a web app which is targeting mobile devices, should I develop on a mobile phone too? – Jon Skeet Jul 1 '10 at 5:30
show 5 more comments
feedback

That's nothing. When I was a child I lived under a newspaper in the gutter... Monty Python, lol.

Just kidding. My Eclipse is taking over 800MB resident, and 2GB virtual (part of it swapped out perhaps). Java can be a hog, it's giving Java a bad press all the time.

However, there is a little something that many people don't know. The incremental garbage collector. -Xincgc The side effect is that it hands memory back to the system from time to time. By default Java just takes and takes, and when it doesn't need memory anymore, it keeps it for itself. The incgc is a different strategy where it becomes more reasonable to assume that memory can be handed back the system without running into trouble. This can however affect performance. There are many garbage collection settings. You can also have multiple threads handle GC. The parallel GC does that. Not sure if that one hands memory back, don't think so.

link|improve this answer
feedback

Modern versions of Eclipse do need quite a bit of RAM to do their thing. But should still run pretty fast on any modern machine.

Assuming you have enough physical memory (2GB is fine unless you have lots of other processes running, or you're using RAD), see this IBM article on Eclipse's memory usage for some tips on tweaking the settings. The two most common culprits are Xmx and/or MaxPermSize being set too low (Xmx defaults to 256M and MaxPermSize defaults to 64M).

You modify the values by passing command line arguments or tweaking the eclipse.ini in the Eclipse install location.

You should end up with something like this:

...
-vmargs
-Xms128m
-Xmx1024m 
-XX:MaxPermSize=128m
link|improve this answer
feedback

If 400 Mb of RAM is a big issue for you, you might want to try another IDE. Eclipse stores a lot of state information, some or most of which you don't actually need. That's a design choice.

Right now, I have the same project open in both Eclipse and QtCreator: after a clean rebuild, Eclipse uses 156 Mb RAM, Qt Creator is happy with 66 Mb.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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