IT Concept: Idempotency
A property where applying an operation multiple times produces the same result as applying it once.
Idempotency — A property where applying an operation multiple times produces the same result as applying it once. Critical in HTTP methods (PUT, DELETE), configuration management (Ansible, Terraform), and retry-safe APIs. It makes distributed systems resilient to network failures and duplicate requests.