Skip to content

IORedisConfiguration

@tsed/ioredis

Usage

typescript
import { IORedisConfiguration } from "@tsed/orm/ioredis/src/types/domain/IORedisConfiguration";

See /packages/orm/ioredis/src/types/domain/IORedisConfiguration.ts.

Overview

ts
type IORedisConfiguration = BaseIORedisConfiguration & (RedisOptions | ClusterConfiguration) & {
    redisInstance?: Redis | Cluster;
    sentinelName?: string;
};

redisInstance

ts
redisInstance?: Redis | Cluster;

sentinelName

ts
sentinelName?: string;

Released under the MIT License.