UNPKG

nest-redis-cache

Version:

使用redis实现nestjs接口层面的缓存

12 lines (11 loc) 237 B
export interface IRedisConfig { port?: number; host?: string; username?: string; password?: string; db?: number; } export interface IRedisApiCacheConfig { redisConfig?: IRedisConfig; redisEXSecond?: number; }