Skip to content

RedisStoreCtrOptions

@tsed/redis

Usage

typescript
import { RedisStoreCtrOptions } from "@tsed/orm/redis/src/domain/RedisStore";

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

Overview

ts
type RedisStoreCtrOptions = (Record<string, any> | {
    clusterConfig: RedisClusterConfig;
}) & Config & {
    redisInstance?: RedisClientType | RedisClusterType<any, any>;
};

clusterConfig

ts
clusterConfig: RedisClusterConfig;

ts
}) & Config & {

redisInstance

ts
redisInstance?: RedisClientType | RedisClusterType<any, any>;

Released under the MIT License.