1

I am using eclipse juno version. At first it working very slowly. so i changed some values in eclipse.ini file to enhance the speed.

The changes are,

from

-Xms40m
-Xmx512m

to

-Xms1024m -Xmx1024m

Still eclipse performance is poor. How to speed up the eclipse performance. any suggestion appreciated.

Pinky
  • 683
  • 1
  • 9
  • 20
  • 1
    possible duplicate of [Tricks to speed up Eclipse](http://stackoverflow.com/questions/316265/tricks-to-speed-up-eclipse) – ljs.dev Sep 26 '13 at 10:24
  • There were some known performance problems in Juno which are fixed in Kepler (4.3). – greg-449 Sep 26 '13 at 10:35

2 Answers2

1

You can disable unwanted plugins if you don't use them on a usual basis.

defau1t
  • 10,593
  • 2
  • 35
  • 47
1

change the following value as well and then try

-XX:MaxPermSize=1024m

Add -Xverify:none to eclipse.ini file.

It will cutdown eclipse startup time by telling VM not to validated the .class files it is loading.

Ahsan Shah
  • 3,931
  • 1
  • 34
  • 48