Redis store for node-cache-manager. Latest version: 1.7.1, last published: a year ago. Start using @myrror-security/cache-manager-redis-store in your project by running `npm i @myrror-security/cache-manager-redis-store`. There are no other projects in th
cache.config.ts import * as redisStore from 'cache-manager-redis-store'; function createOptions() { return { store: redisStore, host: process.env.REDIS_IP, port: process.env.REDIS_PORT, db: process.env.REDIS_DB, ttl: 900 }; } const options = createOptions(); export default options;...
import { redisStore } from 'cache-manager-redis-store'; import { CacheModule, Module } from '@nestjs/common'; import { AppController } from './app.controller'; import { AppService } from './app.service'; @Module({ imports: [ CacheModule.register({ // @ts-ignore store: async ()...
Redis store for node-cache-manager using IORedis. Contribute to dabroek/node-cache-manager-ioredis development by creating an account on GitHub.