ended3월 25일· 1 sources
When handling large lists, what actually slows things down: the number of elements we render, or when we choose to load more?
대규모 리스트 처리 시 실제 성능 저하 원인: 렌더링 요소 수인가, 추가 로딩 시점인가?
Why it matters
The article discusses two separate performance problems when handling large lists: managing how many elements are rendered at once (Virtual Scroll) and deciding when to load more data (Intersection Observer). Virtual Scroll keeps the DOM lightweight regardless of dataset size, while Intersection Observer triggers logic only when elements enter the viewport.
1
Sources
+0
24h
—
Growth
171d
Active
Virtual ScrollIntersection ObserverDOM렌더링 최적화