docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
@@ -1,13 +1,13 @@
---
id: P-REINFORCE-AUTO-A11817
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
category: "10_Wiki/💡 Topics/Programming & Language"
confidence_score: 0.90
tags: [auto-reinforced]
last_reinforced: 2026-04-20
github_commit: "[P-Reinforce] Continuous Worker - 가비지 컬렉터(Garbage Collector)"
---
# [[가비지 컬렉터(Garbage Collector)]]
# [[가비지 컬렉터(Garbage Collector)|가비지 컬렉터(Garbage Collector)]]
## 📌 한 줄 통찰 (The Karpathy Summary)
> 가비지 컬렉터(Garbage Collector, GC)는 프로그램에서 더 이상 사용되지 않는 메모리(Dead regions)를 자동으로 식별하여 운영체제나 새로운 객체 할당을 위해 재사용하도록 수거하는 메모리 관리 메커니즘입니다 [1, 2]. 스택 변수나 전역 객체와 같은 '루트(Root) 객체'에서부터 포인터 체인을 통해 도달할 수 있는 객체는 '활성(Live)' 상태로 간주하고, 도달할 수 없는 모든 객체는 가비지로 판단합니다 [1, 3, 4]. 개발자가 메모리를 명시적으로 관리할 필요성을 덜어주는 장점이 있지만, 메모리 관리에 대한 제어권을 잃게 되고 실행을 멈추게 하는 예측 불가능한 지연(Pause)을 유발할 수 있는 양날의 검과 같습니다 [5, 6].
@@ -32,11 +32,11 @@ github_commit: "[P-Reinforce] Continuous Worker - 가비지 컬렉터(Garbage Co
- **정책 변화:** Programming & Language 분야의 자동 자산화 수행.
## 🔗 지식 연결 (Graph)
- **Related Topics:** [[Generational Hypothesis]], [[Mark-Sweep-Compact]], [[Scavenge]], [[Stop-the-world]]
- **Projects/Contexts:** [[V8 Engine]], [[Orinoco Garbage Collector]], [[IBM Eclipse OpenJ9]]
- **Related Topics:** [[Generational Hypothesis|Generational Hypothesis]], [[Mark-Sweep-Compact|Mark-Sweep-Compact]], [[Scavenge|Scavenge]], [[Stop-the-world|Stop-the-world]]
- **Projects/Contexts:** [[V8 Engine|V8 Engine]], Orinoco Garbage Collector, IBM Eclipse OpenJ9
- **Contradictions/Notes:** 소스에 따르면 V8 엔진은 메모리 효율을 높이기 위해 포인터 압축(Pointer compression) 기술을 도입했는데, 이는 메모리와 성능 최적화에는 크게 기여하지만 64비트 시스템 환경에서도 V8의 최대 힙 크기를 4GB로 제한하게 만드는 부작용(Downside)을 초래합니다 [29, 30].
---
*Last updated: 2026-04-19*
- Raw Source: [[00_Raw/2026-04-20/가비지 컬렉터(Garbage Collector).md]]
- Raw Source: 00_Raw/2026-04-20/가비지 컬렉터(Garbage Collector).md
---