최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 measure-then-fix-locally tactic". 매 system-wide 매 architectural improvement 의 opposite — 매 single profiler hot-spot 의 surgical fix. 매 effective when bounded, dangerous when systemic problem masked.
매 핵심
매 mechanism
매 profiler → bottleneck → patch → re-profile loop.
매 80/20 rule — 매 20% code 의 80% time 의 surgical strike.
매 vs systematic
Ad-hoc: caching one query, inlining one loop.
Systematic: index strategy, algorithm change, architecture refactor.
매 응용
Performance bug regressions (single function got slow).
// Before
for(leti=0;i<n;i++)sum+=arr[i];// After (4x unrolled)
leti=0;for(;i+3<n;i+=4){sum+=arr[i]+arr[i+1]+arr[i+2]+arr[i+3];}for(;i<n;i++)sum+=arr[i];