What is an idempotent operation?

前端 未结 15 924
情话喂你
情话喂你 2020-11-22 03:27

What is an idempotent operation?

15条回答
  •  别那么骄傲
    2020-11-22 03:55

    Quite a detailed and technical answers. Just adding a simple definition.

    Idempotent = Re-runnable

    For example, Create operation in itself is not guaranteed to run without error if executed more than once. But if there is an operation CreateOrUpdate then it states re-runnability (Idempotency).

提交回复
热议问题