@sandumo/nestjs-cache-module
v0.1.0
Published
This package provides a NestJS module for caching.
Downloads
26
Readme
@sandumo/nestjs-cache-module
This package provides a NestJS module for interacting with cache.
Installation
npm install @sandumo/nestjs-cache-moduleUsage
import { CacheModule } from '@sandumo/nestjs-cache-module';
@Module({
imports: [
CacheModule.forRootAsync({
imports: [ConfigModule],
inject: [ConfigService],
useFactory: (configService: ConfigService) => ({
redisUrl: configService.get('REDIS_URL'),
}),
}),
],
})