My Eclipse was getting slower and slower over time. Tips I found on the Internet did not help. What I did is completely deleted my workspace, created new one and reimported all my projects into the new workspace and this really made the difference.

So my question is whether it's possible to perform this workspace clean-up without deleting and recreating workspace... Maybe there is some cache in workspace which is getting big? Any ideas?

Thank you!

link|improve this question
Slow in which ways? Im finding GWT validation is slowing and starting a new workspace helps for example.. – HaveAGuess Nov 30 '11 at 11:34
feedback

3 Answers

Eclipse keeps track of all changes in local history. That might introduce slowdown over time. Local history is located at .metadata/.plugins/org.eclipse.core.resources/.history.

link|improve this answer
Thanks for a quick reply. Can I completely remove that .history folder without any risk? – Daniel Dec 8 '10 at 10:31
1  
Yes, but I recently found out that you can reduce the number of days to keep in history, such that the history doesn't grow too big. (Preferences->General->Workspace->Local history) – rustyx Jan 7 '11 at 9:52
feedback

Try running eclipse from command prompt with

eclipse.exe -clean

More http://www.myeclipseide.com/PNphpBB2-viewtopic-t-10280.html

link|improve this answer
I actually did run it with -clean prior to deleting the workspace... -clean didn't help... – Daniel Dec 8 '10 at 10:32
feedback

Not sure about newer versions of eclipse, but in 3.1 settings in Preferences->General->Workspace->Local history did not work for me. I had it set by default to 7 days but files were kept for 4 years. And I guess other people here had the same issue. For me it helped to remove history files manually from .metadata/.plugins/org.eclipse.core.resources/.history.

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.