[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-04-30 22:42:02 +09:00
parent 0bd4f19e38
commit c36c0644a1
4888 changed files with 18470 additions and 18602 deletions
@@ -1,7 +1,7 @@
---
title: 전략적 상태 관리 가이드 (Global & Server State)
category: Software Architecture
tags: [State Management, React Query, SSOT, Architecture]
title: 전략적 상태 관리 가이드 (Global & Server [[State]])
category: Software [[Architecture]]
tags: [State [[Management]], React Query, SSOT, Architecture]
created: 2026-04-20
---
@@ -21,7 +21,7 @@ created: 2026-04-20
- 다른 상태로부터 계산될 수 있는 값(예: `firstName`+`lastName` = `fullName`)은 절대 '상태'로 만들지 마라. 렌더링 시점에 계산하는 것이 정합성 유지의 핵심이다.
## ⚠️ 모순 및 업데이트 (RL Update)
- 무조건적인 전역 상태 지상주의는 'Prop Drilling'보다 위험할 수 있다. 컴포넌트 간의 의존성이 암시적으로 얽히기 때문이다. 상태는 되도록 사용하는 곳에서 가장 가깝게 위치시켜라.
- 무조건적인 전역 상태 지상주의는 '[[Prop Drilling]]'보다 위험할 수 있다. 컴포넌트 간의 의존성이 암시적으로 얽히기 때문이다. 상태는 되도록 사용하는 곳에서 가장 가깝게 위치시켜라.
## 🔗 지식 연결 (Graph)
- Related: [[Single_Source_of_Truth]] , [[API_Communication_Patterns]]