bullmq - v5.77.1
    Preparing search index...

    Interface NodeRedisRawTransaction

    interface NodeRedisRawTransaction {
        del(keys: string[]): this;
        evalSha(
            sha: string,
            options: { arguments: NodeRedisCommandArgument[]; keys: string[] },
        ): this;
        exec(): Promise<unknown[]>;
        hGetAll(key: string): this;
        hScan(key: string, cursor: string, options?: Record<string, unknown>): this;
        hSet(key: string, data: Record<string, string | number>): this;
        lLen(key: string): this;
        lRange(key: string, start: number, end: number): this;
        sMembers(key: string): this;
        sScan(key: string, cursor: string, options?: Record<string, unknown>): this;
        zRange(key: string, start: number, end: number): this;
    }
    Index

    Methods

    • Parameters

      • key: string
      • cursor: string
      • Optionaloptions: Record<string, unknown>

      Returns this

    • Parameters

      • key: string
      • data: Record<string, string | number>

      Returns this

    • Parameters

      • key: string
      • cursor: string
      • Optionaloptions: Record<string, unknown>

      Returns this