Interface ConnectionOptions

interface ConnectionOptions {
    database?: number;
    host?: string;
    looping?: boolean;
    namespace?: string | string[];
    options?: any;
    pkg?: string;
    port?: number;
    redis?: Cluster | Redis;
    scanCount?: number;
}

Properties

database?: number
host?: string
looping?: boolean
namespace?: string | string[]
options?: any
pkg?: string
port?: number
redis?: Cluster | Redis
scanCount?: number