35 lines
1.4 KiB
Markdown
35 lines
1.4 KiB
Markdown
---
|
|
id: wiki-2026-0508-동시성-및-점진적-마킹-concurrent-incremen
|
|
title: 동시성 및 점진적 마킹(Concurrent Incremental Marking)
|
|
category: 10_Wiki/Topics
|
|
status: duplicate
|
|
canonical_id: wiki-2026-0508-v8-garbage-collection
|
|
duplicate_of: "[[V8 가비지 컬렉션(Garbage Collection)]]"
|
|
aliases: [Concurrent Marking, Incremental Marking, 점진적 마킹]
|
|
source_trust_level: A
|
|
confidence_score: 0.9
|
|
verification_status: redirected
|
|
tags: [duplicate, gc, v8, concurrent]
|
|
last_reinforced: 2026-05-10
|
|
github_commit: pending
|
|
---
|
|
|
|
# 동시성 및 점진적 마킹(Concurrent Incremental Marking)
|
|
|
|
> **이 문서는 [[V8 가비지 컬렉션(Garbage Collection)]] 의 중복본입니다.** Canonical 문서로 redirect.
|
|
|
|
## 매 핵심 요약 (specialization aspects)
|
|
- 매 Incremental marking: 매 main thread 에서 mark 단계를 매 작은 chunk 로 분할 — 매 long pause 회피.
|
|
- 매 Concurrent marking (V8 since 6.4): 매 background thread 에서 mark 수행 — 매 main thread 거의 영향 X.
|
|
- 매 write barrier: 매 mutator 가 reference 변경 시 매 GC 에 통지 — 매 correctness 보장.
|
|
|
|
## 🔗 Graph
|
|
- 부모: [[V8 가비지 컬렉션(Garbage Collection)]] (canonical)
|
|
- Adjacent: [[Mark-Sweep-Compact(메이저 GC)]] · [[Stop-the-world]] · [[오리노코(Orinoco GC)]]
|
|
|
|
## 🕓 변경 이력
|
|
| 날짜 | 변경 |
|
|
|---|---|
|
|
| 2026-05-08 | Phase 1 |
|
|
| 2026-05-10 | 중복 처리 — canonical 문서로 redirect |
|