Number Flags
Integer and floating-point flags for limits, timeouts, rates, and numeric tuning.
Use number flags when the value is numeric and you need to change it without redeploying.
- Integers — batch sizes, retry counts, percentage rollouts stored as whole numbers.
- Doubles — thresholds, rates, and fine-grained tuning.
var limit = flags.GetNumber("rate-limit", 100);
var threshold = flags.GetNumber("error-threshold", 0.05);
Validate ranges in application code. SOASAP stores the value; your service enforces min/max.