콕시캣
http://coxycat.kr

거만고양이

 

 

 

글출처> http://blog.naver.com/xpurpur/130111088483

 

 

 

eclipse.ini 수정
// PermSize를 지정
--launcher.XXMaxPermSize
256m

// JDK 1.6 이상을 사용할 경우 이클립스 성능의 향상에 도움이 된다고 한다.
// 밑의 설정은 자신의 컴퓨터의 Java를 설치한 경로를 적어주면 된다.
-vm
C:\Program Files\Java\jdk1.6.0_20\bin\javaw.exe

// Java 1.6 버전을 사용하겠다고 명시해준다.
-vmargs
-Dosgi.requiredJavaVersion=1.6

// 처음 시작시 유효성 체크를 하지 않는다.
-Xverify:none
// JVM Heap memory 설정
// 보통 자신의 PC의 메모리의 반정도로 최소와 최대 메모리를 설정하면 성능 향상에 도움이 된다.
-Xms1024m
-Xmx1024m
eclipse 설정
1. Automatic folding 설정 해제
Window > Preferences > Java > Editor > Folding 옵션을 모두 해제(disable)

2. Automatic Code Insight 설정 해제
Window > Preferences > Java > Editor > Code Assit 에서 Enable auto activation 항목을 해제(disable)
자동으로 동작하는 code insight 기능은 죽었지만 [ctrl+space] 로 사용할 수 있다.

3. spelling check 설정 해제
Window > Preferences > General > Editors > Text Editors > Spelling 에서 Enable spelling checking 항목을 해제

4. validation check 설정 해제
Window > Preferences > Validation 필요한 항목만 체크

5. eclipse compare 에서 공백 배제하는 법
Window > Preferences > General > Compae/Patch 에서 Ignore white space 항목을 체크
엔터, 스페이스, 탭.. 이 외에도 ASCII 코드 32 이하의 문자들이 공백문자의 대상입니다.

6. Close Projects
현재 작업과 관련이 없는 프로젝트는 모두 닫는다.

7. 플러그인 삭제
과도하게 많은 플러그인 설치는 실행시간이 오래 걸리게 된다. 사용하지 않을 플러그인은 제거

8. KeepResident 플러그인

이클립스가 최소화 되더라도 working set을 유지.
메모리에 여유가 있다면 KeepResident Eclpse plugin for Windows - KeepResident Eclipse plugin 을 설치한다.

MS Windows 에서 이클립스 최소화할 경우 효율을 위해 working set의 크리를 줄인다.

최소화된 창을 복구 시 장시간 garbage collection이 진행되어 장시간 이클립스가 멈추게 된다.

9. 시작을 빠르게
이클립스를 종료할 때 모든 에디터를 닫는다
Window > Preferences > General > Editors > close all editors on exist 항목을 설정(enable) 한다.
Window > Preferences > General > Startup and Shutdown 에서 불필요한 플러그인을 startup list 에서 제외한다.




------------
It offers the state of heap memory inside the Eclipse status line and the automatic and forced execution of GC and so on
Refresh workspace automatically :
It's possible to let Eclipse refresh the workspace automatically when you copy some resources into your workspace.

[출처] 이클립스 최적화|작성자 히휴

+ Recent posts