Retry Logic
Everything on SkillVeris tagged Retry Logic — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
What is a Livelock?
A livelock is a condition where two or more threads keep changing their state in response to each other purely to avoid a conflict, so both stay actively busy…
What is the Circuit Breaker Pattern?
The circuit breaker pattern wraps a call to a remote dependency with a state machine that stops sending requests to a service once it detects repeated failures…
What are Idempotency Keys in APIs?
An idempotency key is a unique client-generated identifier attached to a mutating API request (like POST /payments) so that if the same request is retried afte…
What Is the Background Sync API?
The Background Sync API lets a web app register a deferred task with a Service Worker so that a failed or offline action, like submitting a form, automatically…