dabroek / node-cache-manager-ioredis

Redis store for node-cache-manager using IORedis.
MIT License
59 stars 29 forks source link

store.get is not a function error #34

Open kamal-brill opened 1 year ago

kamal-brill commented 1 year ago

I'm trying to connect to ElastiCache cluster and used the example code given in the readme, just passed the password in the redisOptions

It's throwing me the below error when trying to do caching.get()

TypeError: store.get is not a function
    at Object.get (C:\kamal\proj\node_modules\cache-manager\src\caching.ts:88:36)

Code used

import { Injectable, Scope } from '@nestjs/common';
const cacheManager = require('cache-manager');
const redisStore = require('cache-manager-ioredis');

@Injectable({ scope: Scope.DEFAULT })
export class CacheService {
  private cache;
  constructor() {
    cacheManager.caching({
      store: redisStore,
      clusterConfig: {
        nodes: [
          {
            port: 6379,
            host: 'clustercfg.some.elasticache.service.url.cache.amazonaws.com',
          },
        ],
        options: {
          maxRedirections: 16,
          redisOptions: {
            password: 'PASSWORD',
          },
        },
      },
    }).then(c => {
        this.cache = c;
    }).catch(err => {
        console.log(err);
        this.cache = null
    });
  }

  async get(key: string) {
    return this.cache.get(key);
  }

  set(key: string, value: any, ttl: number) {
    this.cache.set(key, value, { ttl });
    return this;
  }
}

Dependencies:

"cache-manager": "^5.1.3",
"cache-manager-ioredis": "^2.1.0"