retry
Retry with backoff — always pair with idempotency for mutations.
idempotency adds idempotency key middleware to your Go service, making retried requests safe by detecting and short-circuiting duplicates.
Use idempotency on any endpoint where duplicate execution causes problems — payments, order creation, webhook processing. When paired with retry, idempotency keys ensure retries don’t produce duplicate side effects.
Requires: http-api
Suggests: redis
verikt new my-service --language go --cap http-api,idempotency# or add to an existing service:verikt add idempotencyretry
redis
http-api