@creator.co/wapi - v1.8.1
    Preparing search index...

    Type Alias CacheBaseConfig

    Represents the base configuration for a cache, including host, username, password, and TLS settings.

    type CacheBaseConfig = {
        clusterMode?: boolean;
        enableTLS: boolean;
        hostname: string;
        password?: string;
        port?: string | number;
        username: string;
    }
    Index

    Properties

    clusterMode?: boolean
    enableTLS: boolean
    hostname: string
    password?: string
    port?: string | number
    username: string