[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
+4 -4
View File
@@ -1,8 +1,8 @@
---
id: P-REINFORCE-AUTO-STAT-001
id: [[P-Reinforce]]-AUTO-STAT-001
category: "10_Wiki/💡 Topics/AI"
confidence_score: 0.96
tags: [auto-reinforced, state, logic, context, temporary-data, persistence, transition]
tags: [auto-reinforced, state, [[Logic]], context, temporary-data, persistence, transition]
last_reinforced: 2026-04-20
---
@@ -16,7 +16,7 @@ last_reinforced: 2026-04-20
1. **상태 관리의 층위**:
* **Transient State**: 메모리에 잠시 머물다 사라지는 상태 (예: 마우스 클릭 좌표).
* **Persistent State**: 데이터베이스에 저장되어 세션이 끝나도 유지되는 상태. (Storage와 연결)
* **Persistent State**: 데이터베이스에 저장되어 세션이 끝나도 유지되는 상태. ([[Storage]]와 연결)
* **Global State**: 시스템 전체가 공유하는 핵심 설정이나 컨텍스트.
2. **왜 중요한가?**:
* 상태가 꼬이면(State inconsistency) 시스템이 예상치 못한 행동을 하게 되며(Bug), 상태를 잘 설계하는 것이 곧 '예측 가능한 지능'을 만드는 지름길이기 때문임.
@@ -27,5 +27,5 @@ last_reinforced: 2026-04-20
## 🔗 지식 연결 (Graph)
- [[Storage]], [[Logic]], [[Reliability]], [[Scalability]], [[Search-Space]]
- **Modern Tech/Tools**: Redux, React Context, Redis (State store), REST API (Stateless).
- **Modern Tech/Tools**: Redux, [[React Context]], Redis (State store), REST API (Stateless).
---