Posts by prasadekke

@prasadekke

Prasad Ekke

Senior Principal Software Engineer at Broadcom building backend platforms that s...
Pune, India prasadekke.com Joined July 2026
1.2k Points21 Badges10 Connections10 Followers12 Following

Posts by prasadekke

prasadekke in Articles 3 min read
Retries are one of the easiest resilience patterns to add and one of the easiest to get wrong. The idea is sound. Transient failures happen. Networks drop packets. Load balancers close idle connections. A database primary moves. A single failed call...
post-cover-25172
prasadekke in Articles 3 min read
A cache is a promise with an expiration date. That sounds obvious until a production system starts depending on cached state as if it were truth. Then the cache is no longer an optimization. It is a second source of truth with worse durability, weak...
post-cover-24933
prasadekke in Articles 3 min read
I like caches that are easy to delete. That may sound strange, because the whole point of a cache is that it improves something important: latency, cost, load, or availability. But the safest caches are the ones the system can survive without. They ...
post-cover-24339
prasadekke in Articles 4 min read
If you have set up a remote build cache and watched the hit rate sit stubbornly low, nondeterministic outputs are one important suspect — but not the only one. Source churn, changing flags, platform differences, toolchain changes, eviction, and incom...
post-cover-23974
prasadekke in Articles 5 min read
Most engineers think of the build as something that happens on their laptop. You type a command, the fans spin up, and a few minutes later you have a binary. That model is so ingrained that we rarely question it — until the codebase gets big enough t...
post-cover-23681
prasadekke in Articles 5 min read
Go slices are simple on the surface. Under the hood, the interaction between length, capacity, and append has a specific failure mode I've been bitten by more than once — and seen in enough code reviews to write about. The bug is invisible at compile...
post-cover-23154
prasadekke in Articles 4 min read
Go ships with a profiler built in. No third-party tools, no agents to install, no instrumentation to add upfront. If your service imports net/http/pprof, you can profile it live in production right now — CPU usage, memory allocations, goroutine count...
post-cover-23088
prasadekke in Articles 1 min read
Every Go service that does I/O — database calls, HTTP requests, queue polling, file reads — should be passing a context.Context through every layer. In practice, a large number of codebases treat context.Context as optional plumbing that gets added l...
post-cover-23087
prasadekke in Articles 1 min read
Go makes concurrency feel easy. Goroutines are cheap, channels are built into the language, and the standard library gives you everything you need to spin up a worker pool in under 30 lines. That ease is genuinely valuable — but it also means bugs sn...
post-cover-23086
prasadekke in Articles 3 min read
Go Interfaces: Why Less Is Almost Always More If you’re coming to Go from Java or C++, interfaces look familiar at first glance. You define a set of methods, types implement them, you write code against the interface. Same idea, right? Not quite. ...
post-cover-23085
chevron_left

Latest Jobs

View all jobs →