Files
2nd/10_Wiki/Topics/Programming & Language/V8 엔진 힙 아키텍처 및 로그 분석.md
T
2026-05-10 22:08:15 +09:00

35 lines
1.2 KiB
Markdown

---
id: wiki-2026-0508-v8-엔진-힙-아키텍처-및-로그-분석
title: V8 엔진 힙 아키텍처 및 로그 분석
category: 10_Wiki/Topics
status: duplicate
canonical_id: nodejs-memory-tuning
duplicate_of: "[[Nodejs 메모리 튜닝]]"
aliases: []
source_trust_level: A
confidence_score: 0.9
verification_status: redirected
tags: [duplicate, v8, memory, debugging]
last_reinforced: 2026-05-10
github_commit: pending
---
# V8 엔진 힙 아키텍처 및 로그 분석
> **이 문서는 [[Nodejs 메모리 튜닝]] 의 중복본입니다.** Canonical 문서로 redirect.
## 핵심 요약 (specialization aspects)
- 매 V8 heap 의 generational layout — Young (Nursery + Intermediate) / Old (Pointer + Data) / Large / Code.
-`--trace-gc` / `--trace-gc-verbose` log 의 interpret — pause time, promotion rate.
- 매 heap snapshot 의 chrome://inspect 의 분석.
## 🔗 Graph
- 부모: [[Nodejs 메모리 튜닝]] (canonical)
- Adjacent: [[Old Space]] · [[Generational Hypothesis]] · [[Pointer Compression]] · [[Garbage Collection(가비지 컬렉션)]]
## 🕓 변경 이력
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | 중복 처리 — Node 메모리 튜닝 canonical 로 redirect |