bullmq - v5.77.1
    Preparing search index...

    Interface BunRedisRawClient

    interface BunRedisRawClient {
        connected: boolean;
        onclose?: (error?: Error) => void;
        onconnect?: () => void;
        onerror?: (error?: Error) => void;
        url?: string;
        close(): void;
        connect(): Promise<void>;
        get(key: string): Promise<string>;
        incr(key: string): Promise<number>;
        send<T = any>(command: string, args: RedisCommandArgument[]): Promise<T>;
        smembers(key: string): Promise<unknown[]>;
    }
    Index

    Properties

    connected: boolean
    onclose?: (error?: Error) => void
    onconnect?: () => void
    onerror?: (error?: Error) => void
    url?: string

    Methods