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-CC0FCE
category: "[[10_Wiki/💡 Topics/AI]]"
category: "10_Wiki/💡 Topics/AI"
confidence_score: 0.90
tags: [auto-reinforced]
last_reinforced: 2026-04-20
github_commit: "[P-Reinforce] Continuous Worker - 브라우저 메모리 누수 탐지(Browser Memory Leak Detection)"
---
# [[브라우저 메모리 누수 탐지(Browser Memory Leak Detection)]]
# [[브라우저 메모리 누수 탐지(Browser Memory Leak Detection)|브라우저 메모리 누수 탐지(Browser Memory Leak Detection)]]
## 📌 한 줄 통찰 (The Karpathy Summary)
> 브라우저 메모리 누수는 가비지 컬렉션(GC) 대상이 되어야 할 객체들이 Window, 클로저, 이벤트 리스너 등의 GC 루트(Roots)에 의해 계속 참조되어 메모리에서 해제되지 않는 현상이다 [1]. 이를 탐지하고 원인을 파악하기 위해 주로 Chrome DevTools의 힙 스냅샷(Heap snapshot)과 할당 타임라인(Allocation timeline) 도구가 사용된다 [1, 2]. 이러한 도구들을 활용하면 메모리에 남아 있는 객체의 참조 체인(Retainers)과 할당된 스택 트레이스를 분석하여 애플리케이션의 메모리 누수 근본 원인을 식별할 수 있다 [2].
@@ -30,11 +30,11 @@ github_commit: "[P-Reinforce] Continuous Worker - 브라우저 메모리 누수
- **정책 변화:** AI 분야의 자동 자산화 수행.
## 🔗 지식 연결 (Graph)
- **Related Topics:** [[가비지 컬렉션(Garbage Collection)]], [[힙 스냅샷(Heap Snapshot)]], [[클로저(Closures)]], [[V8 엔진(V8 Engine)]]
- **Projects/Contexts:** [[Chrome DevTools]], [[Single Page Applications (SPA)]]
- **Related Topics:** [[가비지 컬렉션(Garbage Collection)|가비지 컬렉션(Garbage Collection)]], [[힙 스냅샷(Heap Snapshot)|힙 스냅샷(Heap Snapshot)]], [[클로저(Closures)|클로저(Closures)]], [[V8 엔진(V8 Engine)|V8 엔진(V8 Engine)]]
- **Projects/Contexts:** [[Chrome DevTools|Chrome DevTools]], [[Single Page Applications (SPA)|Single Page Applications (SPA)]]
- **Contradictions/Notes:** 메모리 사용량 그래프가 증가한다고 해서 모두 누수는 아니다. 캐시, 실행 취소 내역, 가상화된 리스트 버퍼 등은 의도적으로 데이터를 유지하는 것이므로, 의도적인 보존(Intentional retention)과 우발적인 누수(Accidental retention)를 반드시 구별해야 한다 [6]. 또한, `WeakRef``FinalizationRegistry`를 사용해 누수에 강한 패턴을 작성할 수는 있으나, GC의 실행 시점은 비결정적이므로 이를 적절한 생명주기 관리의 대체재로 사용해서는 안 된다 [5].
---
*Last updated: 2026-04-19*
- Raw Source: [[00_Raw/2026-04-20/브라우저 메모리 누수 탐지(Browser Memory Leak Detection).md]]
- Raw Source: 00_Raw/2026-04-20/브라우저 메모리 누수 탐지(Browser Memory Leak Detection).md
---