feat: complete wikification of War Commander batch 1&2 and final grey dot cleanup

This commit is contained in:
2026-04-27 18:58:22 +09:00
parent 3424166ea2
commit 6b86b0da4c
2706 changed files with 9074 additions and 7273 deletions
@@ -15,8 +15,8 @@
* 사용자가 타이핑하며 결과를 검색할 때마다 API 호출을 하면 불필요한 요청과 재렌더링이 발생합니다. 디바운싱(예: 300ms 지연)을 설정하면 타이핑이 멈춘 후에만 API를 호출하도록 제한하여 서버 부하를 줄일 수 있습니다 [7].
## 🔗 Knowledge Connections
- **Related Topics:** [[Concurrent Rendering]], [[useTransition]], [[useDeferredValue]], [[Virtualization]], [[Debouncing]]
- **Projects/Contexts:** [[대규모 데이터 기반 대시보드]], [[사용자 검색/필터링 UI 최적화]]
- **Related Topics:** [[Concurrent Rendering]], [[useTransition]], [[useDeferredValue]], Virtualization, Debouncing
- **Projects/Contexts:** 대규모 데이터 기반 대시보드, 사용자 검색/필터링 UI 최적화
- **Contradictions/Notes:** 무거운 작업의 처리에 있어 디바운싱(Debouncing)과 `useTransition`을 비교했을 때, UI 업데이트를 지연시키는 목적이라면 React의 렌더링 모델에 더 잘 맞는 `useTransition`이 디바운싱보다 더 나은 선택입니다. 그러나 백엔드 API 호출 빈도를 낮추는 것이 목적일 경우에는 여전히 디바운싱이 최선의 방식입니다 [8].
---