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. ..