DEV Community

Cover image for Idempotency
Xapuu
Xapuu

Posted on

Idempotency

This is a submission for DEV Computer Science Challenge v24.06.12: One Byte Explainer.

Explainer

Idempotent operation is such a function that no matter how many times it is executed it will always produce the same output. For example get methods are idempotent, no matter how many times you fetch a user '/user/1' you will always receive the same user.

Top comments (0)