최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 long task 를 매 50ms 미만 chunk 로 split, scheduler.yield() 로 매 input 에 양보". 매 INP (Interaction to Next Paint, 2024 부터 Core Web Vital) 의 핵심 metric — 매 200ms 이하 가 Good. 매 2026 의 Scheduler API + isInputPending + Web Worker 의 매 standard toolkit.
asyncfunctionprocessChunks(items: Item[]){for(constitofitems){process(it);if(navigator.scheduling?.isInputPending?.()){awaitscheduler.yield();// resume after input is handled
}}}
scheduler.postTask with priority
// User-blocking: must run ASAP
scheduler.postTask(updateUserCriticalUI,{priority:'user-blocking'});// User-visible: default
scheduler.postTask(refreshSidebar,{priority:'user-visible'});// Background: prefetch, analytics flush
scheduler.postTask(prefetchNext,{priority:'background'});
언제: time-slice boilerplate, Worker setup scaffold, scheduler API migration plan.
언제 X: 매 actual INP 측정 — RUM (CrUX, Web Vitals JS) 만 truth. LLM 의 perf claim 의 hallucination.