Skip to main content
thakurcoder
Blog
Tools
Portfolio
About
Contact
Search
⌘K
Loading…
Home
/
Blog
/
#Microservices
Tag
#Microservices
2 posts
01
August 21, 2026
You Don't Need Microservices. You Need Boundaries.
Microservices won't fix a monolith that lacks boundaries — they'll just move the coupling onto a network. Break a Laravel app into Billing, Catalog, Identity, and Reporting modules with owned data, public contracts, and Pest-enforced dependency rules, and only extract to a service when a measured problem demands it.
02
June 15, 2026
Circuit Breakers and Bulkheads: Containing Failure
One slow dependency can consume every thread in your gateway and take down a perfectly healthy API. This post breaks down the two patterns that contain the blast radius — circuit breakers and bulkheads — what each actually solves, why they're different, and how to wire both with Resilience4j.