최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 서버 관리 없이 매 코드 실행 — 매 event-driven, 매 auto-scale, 매 pay-per-use". AWS Lambda (2014)로 매 popularize. 2026년에는 매 Lambda + EventBridge + Step Functions, Cloudflare Workers, Vercel Functions, Deno Deploy가 매 생태계 정점. 매 cold-start 문제는 매 SnapStart, Workers V8 isolate로 매 거의 해소.
매 핵심
매 특성
매 No server mgmt: 매 OS/patching 없음.
매 Event-driven: HTTP, queue, stream, schedule.
매 Auto-scale: 매 0 → 1000s, 매 즉시.
매 Pay-per-use: 매 idle cost 거의 0.
매 Stateless: 매 ephemeral execution.
매 trade-off
매 Cold start: 매 ms ~ 수 sec (매 Workers isolate ~ 5ms).
매 Vendor lock-in: 매 AWS-specific event shape.
매 Long-running 부적합: 매 limit (Lambda 15min, Workers 30s CPU).
// 매 outside handler — 매 init reused across invocations
importpostgresfrom"postgres";constsql=postgres(process.env.DB_URL!,{max: 1});exportconsthandler=async()=>{constrows=awaitsql`SELECT NOW()`;returnrows;};