Not all flags deserve the same consistency guarantees. Over-constraining all flag reads increases latency and cost.
Consistency Tiers
- Safety flags: strongly consistent.
- Experiment flags: bounded staleness.
- Cosmetic flags: client-evaluated.
type FlagTier = "safety" | "experiment" | "cosmetic";Correct consistency tiering is a major lever for both reliability and performance.