Files
2nd/10_Wiki/Topics/Index_1530.md
T
koriweb d8a80f6272 chore(wiki): dangling 링크 canonical 정규화 (768파일/1200건)
이름만 다른(표기 변형) [[위키링크]]를 대상 문서의 canonical 제목으로 치환해
끊겼던 1,200개 링크를 연결. 제목/파일명 정규화 일치만 적용하고 별칭 매칭은
과병합 위험으로 제외(애매성 가드). 원본은 _link_reconcile_backup/ 에 백업.
도구: Datacollect/scripts/link_reconcile_apply.mjs

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-08 12:24:15 +09:00

173 lines
5.1 KiB
Markdown

---
id: wiki-2026-0508-index-1530
title: Index 1530
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Topic Index 1530]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [index, navigation, meta, cross-reference]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: Markdown
framework: Obsidian
---
# Index 1530
## 매 한 줄
> **"매 cross-reference index — 매 multi-cluster bridge node."** 매 sequential successor of Index_1528, 매 simultaneously bridges multiple parent clusters. 매 graph topology 의 "betweenness centrality" 의 high node — 매 connector role.
## 매 핵심
### 매 Bridge characteristics
- **Multi-parent**: 매 2+ different topic clusters에 매 link.
- **High betweenness**: 매 networkx betweenness centrality top quartile.
- **Synthesis**: 매 ideas from multiple domains 의 combine.
- **Dispute resolution**: 매 conflicting frameworks 의 reconcile or contrast.
### 매 Maintenance
- 매 quarterly review — 매 still relevant?
- 매 link rot 의 high risk — 매 multiple parents 의 individual changes affect.
- 매 alias maintenance critical — 매 multiple entry points.
### 매 응용
1. Interdisciplinary synthesis (e.g. ML + neuroscience).
2. Methodology comparison (e.g. agile vs. shape-up).
3. Concept disambiguation across domains.
## 💻 패턴
### Multi-parent frontmatter
```yaml
---
id: wiki-2026-0508-index-1530
parents:
- Index_1490
- Index_13
- Distributed-Systems-MOC
bridge_topics: [rate-limiting, distributed-coordination, time]
---
```
### Betweenness centrality
```python
import networkx as nx
from pathlib import Path
import re
def build_graph(wiki: Path) -> nx.DiGraph:
g = nx.DiGraph()
pat = re.compile(r'\[\[([^\]|#]+)')
for md in wiki.rglob('*.md'):
src = md.stem
for link in pat.findall(md.read_text()):
g.add_edge(src, link.strip())
return g
g = build_graph(Path('10_Wiki'))
bc = nx.betweenness_centrality(g)
bridges = sorted(bc.items(), key=lambda x: -x[1])[:20]
# 매 top 20 의 bridge candidates
```
### Synthesis section template
```markdown
## 매 Synthesis
### Cluster A view
[[Index_1490]] perspective: ...
### Cluster B view
[[Distributed-Systems-MOC]] perspective: ...
### 매 Bridging insight
> 매 two views 의 reconcile via <unifying concept>.
```
### Comparison matrix
```markdown
| Aspect | Token Bucket | Leaky Bucket | Sliding Window |
|---|---|---|---|
| Burst | allowed | smoothed | precise |
| Memory | O(1) | O(1) | O(N) |
| Use | API limit | traffic shape | accurate billing |
```
### Cross-link discovery
```python
def suggest_cross_links(note_md: Path, all_notes: dict[str, set[str]]) -> set[str]:
"""Suggest links based on shared tags / content overlap."""
post = frontmatter.load(note_md)
my_tags = set(post.metadata.get('tags', []))
suggestions = set()
for other_name, other_tags in all_notes.items():
if other_name == note_md.stem: continue
overlap = len(my_tags & other_tags)
if overlap >= 2:
suggestions.add(other_name)
return suggestions
```
### Disambiguation pattern
```markdown
# Consistency (Index_1530 disambiguation)
매 "consistency" 의 multiple meanings:
- **Database consistency** — see [[ACID]] · [[CAP-Theorem]]
- **Distributed consistency** — see [[Linearizability]] · [[Eventual Consistency]]
- **UI consistency** — see [[Design-Systems]] · [[HCI-Principles]]
- **Logical consistency** — see [[Consistency-Logic]]
```
### Bridge-health monitor
```python
def bridge_health(note_md: Path) -> dict:
post = frontmatter.load(note_md)
parents = post.metadata.get('parents', [])
return {
'parent_count': len(parents),
'all_resolve': all((note_md.parent / f'{p}.md').exists() for p in parents),
'last_review': post.metadata.get('last_reinforced'),
}
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| 2+ clusters reference same concept | Bridge index |
| Truly single-cluster topic | Regular note, no bridge |
| Disambiguation needed | Bridge with explicit routing |
| Synthesis insight | Bridge with synthesis section |
**기본값**: 매 bridge index 의 explicit `parents:` array + 매 synthesis section + 매 quarterly review.
## 🔗 Graph
- 부모: [[Index_1490]] · [[Index_13]]
- Adjacent: [[Index_1528]] · [[Index_1532]] · [[Index_1490]]
## 🤖 LLM 활용
**언제**: cross-cluster link suggestion, synthesis paragraph drafting, disambiguation page generation.
**언제 X**: 매 cluster boundary definition (taxonomy decision human-owned).
## ❌ 안티패턴
- **Bridge to nowhere**: 매 parents listed, 매 actual content 의 thin.
- **All notes are bridges**: 매 betweenness 의 lose meaning if everywhere.
- **Stale parent reference**: 매 parent renamed → bridge breaks.
## 🧪 검증 / 중복
- Verified (Newman "Networks: An Introduction", Wikipedia disambiguation guidelines).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — bridge index, betweenness centrality, synthesis pattern |