web-devproductivity
Idempotency
Idempotency means that performing the same operation multiple times produces the same result as performing it once. This property is critical in automation and distributed systems where network failures or retries may cause a request to be sent more than once. APIs, payment processing, and deployment scripts should be designed to be idempotent so that retries are safe and don't create duplicate side effects.
#web-dev#productivity