skip to Main Content

In Nest js, I added Redis as a cache manager. And can't find any added data in Redis after calling the set function. So, am I missing something?

Node version: v14.15.4 Nest-js version: 9.0.0 app.module.ts Here is the code. In the app module, I am registering Redis as a cache manager. @Module({ imports: [ CacheModule.register({ isGlobal: true, store: redisStore, url: process.env.REDIS_URL, }) ], controllers: [AppController], providers: [AppService], })…

VIEW QUESTION
Back To Top
Search