@javien/mikro-orm-redis-cache-adapter
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -7,11 +7,11 @@ import type Redis from 'ioredis'; | ||
*/ | ||
readonly debug = false; | ||
readonly debug: boolean; | ||
/** | ||
* The prefix for the cache keys. Defaults to `mikro`. | ||
*/ | ||
readonly prefix = "mikro"; | ||
readonly prefix: string; | ||
/** | ||
* The delimiter between the prefix and the cache key. Defaults to `:`. | ||
*/ | ||
readonly prefixDelimiter = ":"; | ||
readonly prefixDelimiter: string; | ||
/** | ||
@@ -29,5 +29,5 @@ * Logger. Defaults to `console.log`. | ||
*/ | ||
readonly gracefulShutdown = true; | ||
readonly gracefulShutdown: boolean; | ||
constructor(options: RedisCacheAdapterOptions); | ||
} | ||
export type RedisCacheAdapterOptions = SetRequired<Partial<Options>, 'client'>; |
@@ -5,3 +5,3 @@ { | ||
"description": "", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"author": "Javien Lee <kraccoon@dimipay.io> (https://github.com/SnowMarble/)", | ||
@@ -8,0 +8,0 @@ "keywords": ["mikro-orm", "redis", "cache", "adapter"], |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8017