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
@@ -6,7 +6,7 @@ tags: [auto-reinforced, game-dev, performance, optimization, memory-management]
last_reinforced: 2026-04-20
---
# [[Object Pooling (오브젝트 풀링)]]
# [[Object Pooling (오브젝트 풀링)|Object Pooling (오브젝트 풀링)]]
## 📌 한 줄 통찰 (The Karpathy Summary)
> "빌려 쓰고 다시 채우는 자원 관리: 가비지 컬렉터(GC)의 습격으로부터 프레임워크를 보호하기 위해, 객체를 파괴하지 않고 재사용 창고에 보관하는 최적화의 기본형."
@@ -29,6 +29,6 @@ last_reinforced: 2026-04-20
- **정책 변화(RL Update)**: Unity 2021+ 이후 엔진 자체적으로 `UnityEngine.Pool` API를 제공함에 따라, 개발자가 직접 바퀴를 재발명하지 않고 표준화된 풀링 인터페이스를 사용하는 정책이 권고됨.
## 🔗 지식 연결 (Graph)
- **Related**: Graphics & Performance, Memory & Systems, [[Game-Feel-and-Juiciness]], Design Patterns
- **Related**: Graphics & Performance, Memory & Systems, [[Game-Feel-and-Juiciness|Game-Feel-and-Juiciness]], Design Patterns
- **Modern Tech/Tools**: Unity ObjectPool API, Entitas (ECS Framework).
---