nestjs-redis icon indicating copy to clipboard operation
nestjs-redis copied to clipboard

nestjs redis module

Results 56 nestjs-redis issues
Sort by recently updated
recently updated
newest added

Hi,would you consider supporting the cluster? `IORedis.Cluster`. thanks. ``` RedisModule.forRootAsync({ useFactory: (config: Boot) => { return [ { host: '192.168.1.84', port: '6379', db: 0, password: 'xxx', }, {/** more */},...

Hi, thanks for package! I see, that there are packages, that could be moved to peer dependencies, because every nest app already use it: "@nestjs/common": "6.3.1", "reflect-metadata": "^0.1.12", "rxjs": "^6.2.2",...

How to create a new database connection?Can expose createClient()?

Hey! Thanks for all the hard work you've made on this package! I used this package in a code test recently and I built a redis interceptor for caching my...

enhancement

` import { RedisModule } from 'nestjs-redis'; @Module({ imports: [ RedisModule.register({ name: '', host: '', port: 6379, db: 1, password: '', keyPrefix: '_dream' }), }) return new TSError(diagnosticText, diagnosticCodes) ^...

Fixing this particular issue https://github.com/kyknow/nestjs-redis/issues/6

Hi, I can't find any example about how to config redis cluster. I wonder is there a plan to support redis cluster?

enhancement

Fixes https://github.com/skunight/nestjs-redis/issues/43

- I have updated the dependencies to support nest 9 - accommodated the changes for `ioredis@5`