-
NestJs @CacheTTL() not working이슈 기록 2023. 3. 12. 11:39
개발 버전
nestjs : 9 version
cache-manager : 5 version
에러 발생 코드
import { CacheModule, Module } from '@nestjs/common'; ... @Module({ ... }) export class UserModule {}
@CacheTTL(4) @Get() @UseInterceptors(CacheInterceptor) ... findAll( ... ) { ... }
에러 내용
@CacheTTl 데코레이터에 설정한 시간이 재대로 동작하지 않는다.
원인
네스트 9 버전은 cache-manager 5 버전과 재대로 호환되지 않음
해결 방법
cache-manager을 4 버전으로 다운그레이
'이슈 기록' 카테고리의 다른 글
ACM https 503 Error (0) 2023.02.07 aws codeDeploy beforeInstall fail (0) 2023.02.05 NestJs Error: connect ECONNREFUSED ::1:3306 (0) 2023.01.31 nestjs cli new npm install --slient 에러 (0) 2023.01.23 vue bootstrap b-badge b-toast 렌더링 문제 (0) 2021.06.01