Skip to content

RedisClusterConfig

@tsed/redis

Usage

typescript
import { RedisClusterConfig } from "@tsed/redis";

See /packages/orm/redis/src/domain/RedisStore.ts.

Overview

ts
interface RedisClusterConfig {
    nodes: RedisClusterOptions["rootNodes"][];
    options?: Record<string, any>;
}

nodes

ts
nodes: RedisClusterOptions["rootNodes"][];

options

ts
options?: Record<string, any>;

Released under the MIT License.