Replies: 2 comments
-
가비지 컬렉션는 언제 일어나는가?Heap 메모리가 부족할 때 GC 가 일어납니다.
이떄, Compact를 하는 과정에서 age 가 증가하게 되는데 임계치를 넘어가게 되면 Old 영역으로 이동하게 됩니다. |
Beta Was this translation helpful? Give feedback.
0 replies
-
가비지 컬렉션은 힙 메모리가 가득 차거나 객체 생성이 빈번하여 힙 영역이 빠르게 소진될 때 발생합니다. 일반적으로 자동으로 실행되며, 수동으로 가비지 컬렉션을 요청하려면 System.gc() 메서드를 사용할 수 있지만, 요청한다고 해서 즉시 실행이 보장되는 것은 아닙니다. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
메모용
https://principled-staircase-b45.notion.site/Garbage-Collection-8041cce7c04444efb7cec0733d24c96d?pvs=4
Beta Was this translation helpful? Give feedback.
All reactions