How can you speed up Eclipse?

后端 未结 30 2604
甜味超标
甜味超标 2020-11-22 06:04

How can you make the experience with Eclipse faster?

For instance: I disable all the plugins I don\'t need (Mylyn, Subclipse, …).<

30条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 06:51

    Thanks for the hints. These options (mentioned above) helped me a lot:

    Windows:

    Increasing memory & regarding to my updated Java version in eclipse.ini:

    -Dosgi.requiredJavaVersion=1.6
    -Xms512m
    -Xmx512m
    -XX:PermSize=512m
    -XX:MaxPermSize=512M
    -Xverify:none
    

    Additionally, since we are optimizing for speed, setting -Xms to the same value as -Xmx makes the JVM start with the maximum amount of memory it is allowed to use.

    Linux / Ubuntu:

    Using

    update-alternatives --config java
    

提交回复
热议问题