perf: cache banners with Redis
All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 1m3s

This commit is contained in:
2026-03-05 16:42:08 +07:00
parent ebc143dc74
commit afcd2348e0
2 changed files with 23 additions and 1 deletions

7
src/config/redis/key.ts Normal file
View File

@ -0,0 +1,7 @@
export const redisKey = [
{
name: "HERO_BANNER",
description: "Key for caching active hero banner data",
key: `${process.env.APP_NAME}:system:banner`,
},
];