Content
Circuit Breakers in Laravel Jobs
Imagine you're sending OTPs after users create an account. A typical Laravel job might look something like this:
tries = 5
backoff = [30, 60, 90, 120]
If sending the SMS fails, Laravel
3 weeks ago 2 min read
SLI vs SLO vs SLA
I often mix up these terms SLI, SLO, and SLA, so here’s a simple way to understand them.
1️⃣ SLI – Service Level Indicator
What we measure: An SLI is
6 months ago 2 min read