docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-7669FA
|
||||
category: "[[10_Wiki/💡 Topics/Programming & Language]]"
|
||||
category: "10_Wiki/💡 Topics/Programming & Language"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - 웹 워커 이벤트 포워딩 Event Forwarding"
|
||||
---
|
||||
|
||||
# [[웹 워커 이벤트 포워딩 Event Forwarding]]
|
||||
# [[웹 워커 이벤트 포워딩 Event Forwarding|웹 워커 이벤트 포워딩 Event Forwarding]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 웹 워커(Web Worker)는 DOM API에 직접 접근할 수 없기 때문에, 메인 스레드의 캔버스에서 발생한 마우스 및 터치 이벤트를 캡처하여 필요한 좌표와 상태 데이터만 추출한 뒤 `postMessage`를 통해 워커 스레드로 전달(Forwarding)하여 상호작용을 대리 처리하는 기법입니다.
|
||||
@@ -58,12 +58,12 @@ self.onmessage = function (evt) {
|
||||
- **정책 변화:** Programming & Language 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[OffscreenCanvas]], [[Web Worker postMessage 동기화]], [[대리 인터랙션 (Proxy Interaction)]], [[Raycasting을 통한 3D 객체 선택]]
|
||||
- **Projects/Contexts:** [[Konva의 Offscreen Canvas 및 이벤트 포워딩 구현]], [[react-three-offscreen 기반 DOM 이벤트 패치]]
|
||||
- **Related Topics:** [[OffscreenCanvas|OffscreenCanvas]], Web Worker postMessage 동기화, 대리 인터랙션 (Proxy Interaction), Raycasting을 통한 3D 객체 선택
|
||||
- **Projects/Contexts:** Konva의 Offscreen Canvas 및 이벤트 포워딩 구현, react-three-offscreen 기반 DOM 이벤트 패치
|
||||
- **Contradictions/Notes:** 이벤트 포워딩 방식은 메인 스레드와 워커 간의 통신이므로 직렬화 및 메시지 패싱에 따른 지연(약간의 오버헤드)이 발생합니다. 마우스나 터치 이벤트 발생 빈도 정도는 일반적으로 성능 저하를 일으키지 않으나, 과도하게 많은 이벤트 데이터(예: 수천 번의 `mousemove`)가 발생할 경우 스로틀링(Throttling) 기법을 함께 적용하여 메시지 큐의 병목을 막는 것이 안전합니다.
|
||||
|
||||
---
|
||||
|
||||
_Last updated: 2026-04-14_
|
||||
- Raw Source: [[00_Raw/2026-04-20/웹 워커 이벤트 포워딩 Event Forwarding.md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/웹 워커 이벤트 포워딩 Event Forwarding.md
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user