Type alias RedisJobOptions

RedisJobOptions: BaseJobOptions & {
    deid?: string;
    fpof?: boolean;
    idof?: boolean;
    kl?: number;
    rdof?: boolean;
}

These fields are the ones stored in Redis with smaller keys for compactness.

Type declaration

  • Optional deid?: string

    Debounce identifier.

  • Optional fpof?: boolean

    If true, moves parent to failed.

  • Optional idof?: boolean

    If true, moves the jobId from its parent dependencies to failed dependencies when it fails after all attempts.

  • Optional kl?: number

    Maximum amount of log entries that will be preserved

  • Optional rdof?: boolean

    If true, removes the job from its parent dependencies when it fails after all attempts.

Generated using TypeDoc