HTTP Concepts

Idempotency

A property of HTTP methods where making the same request multiple times produces the same result as making it once. GET, PUT, DELETE, and HEAD are idempotent methods, while POST is not. This is critical for retry logic — if a network error occurs, idempotent requests can safely be retried without causing duplicate side effects.

관련 프로토콜

가이드에서 언급됨

관련 시나리오

정의 출처

의사결정 가이드

관련 항목