NestJS Redis Connector is a library that integrates Redis caching into NestJS applications. Version 1.0.4 provides a `RedisConnectorModule` for easy registration and a `RedisClientService` for interacting with Redis. It is based on ioredis and the official NestJS cache-manager module. Development appears inactive with no recent updates. Key differentiators include simple registration and out-of-the-box TypeScript support, but note the package is not widely adopted and may lack community support.
npm install nestjs-redis-connectorNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to register RedisConnectorModule and use RedisClientService in a NestJS controller to get cached values.
Consider using the official @nestjs/cache-manager or cache-manager-redis-store instead.
Use `get` or `getAsync` if available, or consult latest docs.
Run `npm install @nestjs/cache-manager@^2.1.0` alongside the package.
Inject RedisClientService instead of trying to import a client.
npm install @nestjs/cache-manager@^2.1.0
Ensure you are using version 1.0.4 and import { RedisConnectorModule } from 'nestjs-redis-connector'Update the package to latest version or manually declare type: (this.redisClient as any).getValue(key)