Bumped @keyv/redis and keyv libraries to resolve issues with invalid cache key resolution

Signed-off-by: eipc16 <pprzemek.312@gmail.com>
This commit is contained in:
eipc16
2024-11-19 14:53:18 +01:00
parent 5550aa7433
commit de6f280dfa
7 changed files with 154 additions and 39 deletions
-5
View File
@@ -486,11 +486,6 @@ export interface Config {
connection: string;
/** An optional default TTL (in milliseconds, if given as a number). */
defaultTtl?: number | HumanDuration | string;
/**
* Whether or not [useRedisSets](https://github.com/jaredwray/keyv/tree/main/packages/redis#useredissets) should be configured to this redis cache.
* Defaults to true if unspecified.
*/
useRedisSets?: boolean;
}
| {
store: 'memcache';