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 -6
View File
@@ -1,12 +1,12 @@
---
id: [[P-Reinforce]]-AUTO-STAT-001
id: [[P-Reinforce|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|Logic]], context, temporary-data, persistence, transition]
last_reinforced: 2026-04-20
---
# [[State]]
# [[State|State]]
## 📌 한 줄 통찰 (The Karpathy Summary)
> "찰나의 스냅샷: 과거에 어떤 일이 벌어졌는지에 대한 기억을 머금고 있는 '지금 이 순간의 데이터'이자, 시스템이 다음에 무엇을 할지 결정하기 위해 참조하는 가장 신선한 정보의 응축."
@@ -16,7 +16,7 @@ last_reinforced: 2026-04-20
1. **상태 관리의 층위**:
* **Transient State**: 메모리에 잠시 머물다 사라지는 상태 (예: 마우스 클릭 좌표).
* **Persistent State**: 데이터베이스에 저장되어 세션이 끝나도 유지되는 상태. ([[Storage]]와 연결)
* **Persistent State**: 데이터베이스에 저장되어 세션이 끝나도 유지되는 상태. ([[Storage|Storage]]와 연결)
* **Global State**: 시스템 전체가 공유하는 핵심 설정이나 컨텍스트.
2. **왜 중요한가?**:
* 상태가 꼬이면(State inconsistency) 시스템이 예상치 못한 행동을 하게 되며(Bug), 상태를 잘 설계하는 것이 곧 '예측 가능한 지능'을 만드는 지름길이기 때문임.
@@ -26,6 +26,6 @@ last_reinforced: 2026-04-20
- **정책 변화(RL Update)**: 챗봇(LLM) 또한 이전 대화 내용 정책을 '상태'로 관리하며(Context window), 이 상태를 얼마나 길고 정확하게 유지하느냐가 대화의 지능 정책 수준을 결정함.
## 🔗 지식 연결 (Graph)
- [[Storage]], [[Logic]], [[Reliability]], [[Scalability]], [[Search-Space]]
- **Modern Tech/Tools**: Redux, [[React Context]], Redis (State store), REST API (Stateless).
- [[Storage|Storage]], [[Logic|Logic]], [[Reliability|Reliability]], [[Scalability|Scalability]], [[Search-Space|Search-Space]]
- **Modern Tech/Tools**: Redux, [[React Context|React Context]], Redis (State store), REST API (Stateless).
---