nestjs-redis
nestjs-redis copied to clipboard
π Modular Redis toolkit for NestJS: Client, RedLock and more
### Package @nestjs-redis/socket.io-adapter ### Version 0.12.1 ### What happened? I added RedisModule in app.module.ts like this: ``` import { RedisModule } from "@nestjs-redis/kit"; //imports RedisModule.forRoot({ isGlobal: true, type: 'sentinel', options:...
### Package @nestjs-redis/kit ### Version 0.12.1 ### What happened? ``` RedisModule.forRootAsync({ inject: [ConfigService], useFactory(configService: ConfigService) { const username = configService.getOrThrow('redis.username'); const password = configService.getOrThrow('redis.password'); const host = configService.getOrThrow('redis.host'); const port...