@moirae/redis
v0.6.0
Published
A cache provider for Moirae leveraging Redis.
Downloads
3
Readme
@moirae/redis
A cache provider for Moirae leveraging Redis.
Configuration
{
/**
* Connection parameters for the underlying `redis` library
*/
redis: RedisClientOptions;
/**
* Namespace root that prefixes all elements of the cache
*/
namespaceRoot: string;
/**
* Duration in seconds to persist transaction information in the redis cache
* after last interaction.
*
* @default 172800 (48hrs)
*/
transactionCacheDuration?: number;
type: "redis";
}