node-cache-manager-redis icon indicating copy to clipboard operation
node-cache-manager-redis copied to clipboard

Node cache store for Redis

Results 13 node-cache-manager-redis issues
Sort by recently updated
recently updated
newest added

Hi how to use in typescript?

I'm trying to cache an array and I get this error: `RangeError: Invalid string length at JSON.stringify () at /app/node_modules/cache-manager-redis/index.js:241:24` I'm unable to catch this error in my code for...

I had the problem with circular references in my [nest.js](https://nestjs.com/) project. This PR with [circular-json](https://github.com/WebReflection/circular-json) solved the problem for me. I have not thoroughly tested this yet. I only make...

Even if redis does not support SSL natively, having SSL support when using a proxy like [stunnel](https://www.stunnel.org/index.html) would be great!

To my knowledge, the HSET/HGET will have better performance when there are many keys share the prefix, just like this: ``` cache:user:session:1 cache:user:session:2 ``` My suggestion is to store the...

Build support for a `raw` function so users can run anyREDIS commands. See https://github.com/dial-once/node-cache-manager-redis/issues/53#issuecomment-323683713

Warp data with circular structure return an error which is OK: `"TypeError: Converting circular structure to JSON"` But afterwards any request to the cache will no response anything and got...

bug

`del` method doesn't support multiple keys to be deleted.

As per Redis documentation, we shouldn't rely on `KEYS` as much but rather use `SCAN`.