Files
2nd/10_Wiki/Topics/DevOps_and_Security/V8 가비지 컬렉션(Garbage Collection).md
T
2026-05-10 22:08:15 +09:00

36 lines
1.2 KiB
Markdown

---
id: wiki-2026-0508-v8-가비지-컬렉션-garbage-collection
title: V8 가비지 컬렉션 (Garbage Collection)
category: 10_Wiki/Topics
status: duplicate
canonical_id: garbage-collection
duplicate_of: "[[Garbage Collection]]"
aliases: []
source_trust_level: A
confidence_score: 0.9
verification_status: redirected
tags: [duplicate, gc, v8, memory]
last_reinforced: 2026-05-10
github_commit: pending
---
# V8 가비지 컬렉션 (Garbage Collection)
> **이 문서는 [[Garbage Collection]] 의 중복본입니다.** Canonical 문서로 redirect.
## 핵심 요약 (V8 specialization)
- V8 매 generational GC: Young Gen (Scavenger, semi-space copy) + Old Gen (Mark-Sweep-Compact).
- Orinoco — concurrent + parallel + incremental marking 의 main-thread pause 의 minimize.
- 매 두 번 survive 의 object 의 Old Gen 으로 promote.
- Idle-time GC + lazy sweeping 의 pause 시간 의 ms 단위.
## 🔗 Graph
- 부모: [[Garbage Collection]] (canonical)
- Adjacent: [[V8 Engine Heap Management]] · [[To Space와 From Space]] · [[Orinoco]]
## 🕓 변경 이력
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | 중복 처리 — Garbage Collection canonical 문서로 redirect |