-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 1.26 KB
/
index.html
File metadata and controls
27 lines (27 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html5>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Memory Profiling</title>
<link href="./css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>JavaScript Memory Profiling</h1>
<h2>목차</h2>
<ul>
<li><a href="./items/gc-timing.html">GC 수행 시점</a></li>
<li><a href="./items/gc-block.html">GC에 의한 블럭</a></li>
<li><a href="./items/dom-gc.html">DOM과 GC, Detached DOM</a></li>
<li><a href="./items/shallow-size.html">Shallow size</a></li>
<li><a href="./items/retained-size.html">Retained size</a></li>
<li><a href="./items/3-snapshot.html">3 스냅샷 테크닉</a></li>
<li><a href="./items/array-increment.html">배열과 메모리 할당</a></li>
<li><a href="./items/closure.html">클로저와 메모리</a></li>
<li><a href="./items/leak-closure.html">클로저에 의한 메모리 릭</a></li>
<li><a href="./items/dom-circular-references.html">DOM과 이벤트 핸들러의 순환 참조</a></li>
<li><a href="./items/leak-event-handler-increment.html">DOM 개수만큼 늘어나는 이벤트 핸들러</a></li>
<li><a href="./items/leak-zombie-handler.html">DOM을 삭제해도 남아있는 이벤트 핸들러</a></li>
<li><a href="./items/leak-infinite-cache.html">무한정 늘어나는 캐시</a></li>
</ul>
</body>
</html>