Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Queue
- TypeScript
- GIT
- JavaScript
- Bull
- dfs
- 자료구조
- flask
- AWS
- Nest.js
- Python
- Dinosaur
- nestjs
- typeORM
- Sequelize
- Express
- cookie
- 정렬
- OCR
- 게임
- 공룡게임
- MySQL
- game
- react
- MongoDB
- class
- mongoose
- jest
- nodejs
Archives
- Today
- Total
포시코딩
[NestJS] cache-manager with. Redis (v. 2024) 본문
728x90
https://www.npmjs.com/package/cache-manager
https://github.com/nestjs/cache-manager
기존 cache-manager(위)가 nestjs 밑으로 들어갔다. (아래)
2023년 초에 등록된 듯 한데, 사용할 때 devDependencies에 @types/cache-manager가 없으면 에러가 나긴 하더라.
아래는 예전 포스팅
아래부턴, 예전 포스팅과 비슷하면서도 살짝 달라진 NestJS 상에서
cache-manager와 redis를 통해 데이터를 저장하고 가져오는 방법에 대해 알아볼 것이다.
nest project 세팅
bun create nest nest-cache
속도와 편의성을 위해 package-manager로 bun 사용
bun install @nestjs/cache-manager cache-manager-redis-store@2.0.0
bun install -D @types/cache-manager @types/cache-manager-redis-store
다른건 최신으로 설치해도 되지만 cache-manger-redis-store에 한해서 @2.0.0으로 설치하지 않으면
아래 cacheConfig.service 에서 불러오는 redisStore에 대해 아래 에러가 발생한다.
그냥 cache를 사용해도 되지만 redis에 대한 포스팅이니 redis 설치
위 포스팅 참고
아래는 코드
app.module
// ... 생략
import { CacheModule } from '@nestjs/cache-manager';
import { CacheConfigService } from './common/cacheConfig.service';
@Module({
imports: [
// ... 생략
CacheModule.registerAsync({ isGlobal: true, useClass: CacheConfigService }),
],
})
export class AppModule {}
cacheConfig.service
import { CacheModuleOptions, CacheOptionsFactory } from '@nestjs/cache-manager';
import { Injectable } from '@nestjs/common';
import redisStore from 'cache-manager-redis-store';
@Injectable()
export class CacheConfigService implements CacheOptionsFactory {
createCacheOptions(): CacheModuleOptions {
const config: CacheModuleOptions = {
store: redisStore,
host: 'localhost',
port: 6379,
ttl: 60,
};
return config;
}
}
sample.service
import { CACHE_MANAGER, Cache } from '@nestjs/cache-manager';
import { Inject, Injectable } from '@nestjs/common';
@Injectable()
export class SampleService {
constructor(@Inject(CACHE_MANAGER) private readonly cacheManager: Cache) {}
async save(test: string) {
await this.cacheManager.set('test', test);
return true;
}
async find() {
const test = await this.cacheManager.get('test');
return test;
}
}
나머지 설정은 이전과 같다.
728x90
'Node.js' 카테고리의 다른 글
[NestJS] SAML Assertion에 값 추가 (passport-saml, strategy) (0) | 2024.02.05 |
---|---|
[NestJS] Strategy, Guard 한 파일에 깔끔하게쓰기 (1) | 2024.01.30 |
[Test] 외부 라이브러리 mock 시키기 (0) | 2023.12.26 |
[GraphQL] Utility type in entity (0) | 2023.12.21 |
[TypeORM] save, insert, update, upsert 동작 원리 (0) | 2023.12.21 |