A deprecated Redis connector for the Strapi CMS framework that enables Redis client access in Strapi controllers and services. Version 0.0.9 (latest) relies on the node-redis driver and promisifies Redis commands for async/await usage. It is not an official Strapi package and is no longer maintained. Alternatives include using the official Strapi Redis plugin or integrating Redis directly via a custom service. The package has had infrequent updates and is considered unstable for production use.
npm install strapi-connector-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows installation, configuration in Strapi database config, and usage of redis.get() in a controller.
Use official Strapi Redis plugin or implement custom Redis integration.
Update to a maintained Redis connector or use node-redis v4+ directly.
Always use try/catch or .catch() on Redis calls.
Ensure 'redis' connection is present in config/database.js.
Run: npm install strapi-connector-redis --save
Add a 'redis' connection in config/database.js as shown in quickstart.