전체보기

·🦁 NestJS
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. ..
·🐦 Flutter
보호되어 있는 글입니다.
보호되어 있는 글입니다.
·🦁 NestJS
보호되어 있는 글입니다.
suojae
'분류 전체보기' 카테고리의 글 목록