1. Write-Through 개념쓰기 작업 시 캐시와 데이터베이스를 동시에 업데이트하는 전략이다.읽기 작업은 캐시에서만 수행된다. TypeScript 예제class WriteThroughCache { private cache = new Map(); private database = new Map(); async write(key: string, value: any): Promise { this.cache.set(key, value); this.database.set(key, value); // DB와 캐시에 동시 쓰기 } async read(key: string): Promise { return this.cache.get(key); // 캐시에서 읽기 }} 다이어그램 2. ..