Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.37 KB

File metadata and controls

40 lines (32 loc) · 1.37 KB

Fallback

Motivation

Solution

Concepts

  • When a request to a service fails, return an alternative response to the request.

Implementation

Fallback Logic

  • Basic ideas
    • Fallback logic typically does little or no processing, and return value.
    • Fallback logic must have little chance of failing.
  • Approaches
    • Return previous cached value.

Pros & Cons

Pros

Cons

Consideration

Topic Consideration Possible Solution Options

When To Use

References