You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This discussion was converted from issue #44 on November 24, 2024 11:18.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Intro
GC 튜닝 옵션별, 대상 메모리 영역
메모리 설정
-Xms<size>
: 초기 힙 메모리 크기를 설정-Xmx<size>
: 최대 힙 메모리 크기를 설정-XX:InitialHeapSize=<size>
: 초기 힙 메모리 크기를 설정 (-Xms와 동일한 역할을 하며, 내부적으로 -Xms의 값을 설정)-XX:MaxHeapSize=<size>
: 최대 힙 메모리 크기를 설정 (-Xmx와 동일한 역할을 하며, 내부적으로 -Xmx의 값을 설정)-XX:NewRatio=<value>
: Young : Old의 비율 (값이 n이면, Young : Old = 1 : n)-XX:SurvivorRatio
: Eden : Survivor 1 : Survivor 2의비율 (값이 n이면, Eden : Survivor 1 : Survivor 2 = n : 1 : 1), default는 n=8컨테이너 환경 관련 설정
-XX:+UseContainerSupport
: 컨테이너 환경을 제대로 인식하도록 하는 설정 (Java 10 이상 기본 적용)-XX:MaxRAMPercentage=<value>
: 최대 힙 메모리 비율을 설정-XX:MinRAMPercentage=<value>
: 최소 힙 메모리의 비율을 설정Beta Was this translation helpful? Give feedback.
All reactions