← Glossary

Idempotency

An operation that can be safely repeated without changing the result.

Critical for retries. 'Set balance to $100' is idempotent; 'Add $10' is not.

Go deeper
Read the full Idempotency concept guide →

An operation you can safely apply more than once and get the same result: the foundation of every retryable system.

Where it shows up
← All 36 terms