Files
2nd/10_Wiki/Topic_Programming/Backend/Case-Study-Skybound-Asset-Cache-Busting.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

132 lines
4.0 KiB
Markdown

---
id: wiki-2026-0508-case-study-skybound-asset-cache-
title: "Case Study: Skybound Asset Cache Busting"
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Cache Busting, Asset Versioning Case Study]
duplicate_of: none
source_trust_level: B
confidence_score: 0.85
verification_status: applied
tags: [case-study, caching, deployment, web-performance]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: TypeScript
framework: Vite
---
# Case Study: Skybound Asset Cache Busting
## 매 한 줄
> **"매 stale-asset bug 매 production"**. 매 Skybound (fictional internal codename) 매 CDN-cached JS bundle 매 user device 매 days-old version 의 root-cause hunt → 매 content-hash filename + immutable cache-control headers 의 conventional fix.
## 매 핵심
### 매 problem
- 매 deploy → 매 some users 매 broken UI (stale `app.js` mismatched with new `api.js` schema).
- 매 CDN-edge 매 7-day cache, browser 매 1-day cache, 매 union 매 race.
### 매 root cause
- 매 fixed filename `/static/app.js` 매 invalidation 매 manual.
-`Cache-Control: max-age=86400` 매 too aggressive for mutable name.
### 매 fix layers
1. Content-hash in filename: `app.[hash].js`.
2. `Cache-Control: public, max-age=31536000, immutable` for hashed assets.
3. Short TTL on `index.html` (entry point) only.
## 💻 패턴
### Vite hashed output (default)
```ts
// vite.config.ts
export default {
build: {
rollupOptions: {
output: {
entryFileNames: 'assets/[name].[hash].js',
chunkFileNames: 'assets/[name].[hash].js',
assetFileNames: 'assets/[name].[hash][extname]',
},
},
},
};
```
### CDN cache-control (Cloudflare worker)
```js
addEventListener('fetch', (e) => e.respondWith(handle(e.request)));
async function handle(req) {
const url = new URL(req.url);
const res = await fetch(req);
const r = new Response(res.body, res);
if (/\.[a-f0-9]{8,}\.(js|css|png|webp)$/.test(url.pathname)) {
r.headers.set('Cache-Control', 'public, max-age=31536000, immutable');
} else if (url.pathname.endsWith('.html') || url.pathname === '/') {
r.headers.set('Cache-Control', 'public, max-age=60, must-revalidate');
}
return r;
}
```
### Service worker cache cleanup
```ts
self.addEventListener('activate', (e) => {
e.waitUntil(
caches.keys().then(keys =>
Promise.all(keys.filter(k => k !== CURRENT_VERSION).map(k => caches.delete(k)))
)
);
});
```
### Deployment 매 atomic swap (S3 + CloudFront)
```bash
aws s3 sync ./dist s3://bucket --cache-control 'public,max-age=31536000,immutable' \
--exclude 'index.html'
aws s3 cp ./dist/index.html s3://bucket/index.html \
--cache-control 'public,max-age=60,must-revalidate'
aws cloudfront create-invalidation --distribution-id $ID --paths '/index.html' '/'
```
### Verification 매 post-deploy
```bash
curl -I https://app.example.com/assets/app.abc123.js | grep -i cache-control
# expect: cache-control: public, max-age=31536000, immutable
```
## 매 결정 기준
| Asset type | Strategy |
|---|---|
| Hashed JS/CSS/images | `immutable, max-age=1y` |
| HTML entry | `max-age=60, must-revalidate` |
| API JSON | `no-store` or `stale-while-revalidate` |
**기본값**: Vite/Webpack hashed output + 1y immutable for hashed, short TTL for HTML.
## 🔗 Graph
- 변형: [[ETag]]
- Adjacent: [[Vite]]
## 🤖 LLM 활용
**언제**: deploy-time stale-asset bug, CDN config debugging.
**언제 X**: server-rendered no-cache responses (caching irrelevant).
## ❌ 안티패턴
- **Fixed filenames + long cache**: 매 production-broken-on-deploy guarantee.
- **Cache-busting via querystring `?v=2`**: 매 some CDNs ignore query.
- **Forgetting HTML cache TTL**: hashed assets 매 useless if entry HTML cached.
## 🧪 검증 / 중복
- Verified (MDN Cache-Control, Vite docs, Web.dev caching guide).
- 신뢰도 B+.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Skybound case study FULL with Vite + CDN patterns |