๋ฌธ์ ์ ์ : - ๋ฐ๋ณต์ ์ธ get์์ ์ผ๋ก ์ธํ DB ๋ถํ ๋ฐ์ ํด๊ฒฐ๋ฐฉ๋ฒ : - ๋ฐ๋ณต์ ์ผ๋ก ์ค๋ get ์์ฒญ ์ db์ ์ ์ํ์ง์๊ณ redis์ ์ ์ฅํ์ฌ ๋ถ๋ฌ์ด. - redis.ts import {createClient} from "@redis/client"; export class Redis { public static async getValue(key: string): Promise { let result = null; try { const client = createClient(); client.on("error", err => console.log("Redis Client Error", err)); await client.connect(); result = await client.get(key); a..