Idempotency
Idempotency means that repeating an operation produces the same result as doing it once. In payments, an idempotency key on charge creation prevents double-charging when a network retry delivers the same request twice. In webhooks, an idempotent handler is one that can safely process the same event multiple times. Both are critical for a launch-day payments stack.
한국어
멱등성(Idempotency)은 작업을 반복해도 한 번 한 것과 같은 결과를 낸다는 의미예요. 결제에서, 차지 생성 시 idempotency key는 네트워크 재시도가 동일 요청을 두 번 보내도 중복 결제를 막아요. 웹훅에서는 동일 이벤트를 여러 번 안전히 처리할 수 있는 핸들러.
日本語
冪等性(Idempotency)とは、同じ操作を繰り返しても1回と同じ結果になる性質。決済では、charge作成時のidempotency keyがネットワーク再試行時の二重請求を防ぎ、WebhookではハンドラがWebhook重複配信を安全に処理できる状態を意味する。