Install
Go
Go releases, modules, concurrency patterns, and backend tooling.
- 6 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in Go
Go Concurrency: How to Run Parallel Tasks with Goroutines, Channels, and Context
6+ hour, 41+ min ago (951+ words) Go is useful for backend services that need to wait on several slow operations at once. A service may call external HTTP APIs, read files, or handle queue messages. Instead of waiting for one operation to finish before starting the…...
How I Code Without Typing|Theo - t3.gg — BigGo Finance
13+ hour, 1+ min ago (442+ words) "I've had Astra merge over a 100 PRs across my projects and I've had Fable merge at least 50. And of the 150 PRs that they merged and wrote and did everything themselves fully autonomously, two kind of had regressions in them. That's…...
Menavigasi Tantangan Concurrency di Go: Mengatasi Data Race dan Optimasi Performa di Tahun 2026
15+ hour, 28+ min ago (892+ words) Berbicara tentang Golang hampir certainly akan membawa kita pada pembahasan mengenai concurrency. Sejak awal kemunculannya, goroutines dan channels telah menjadi daya tarik utama yang membuat Go menjadi pilihan favorit untuk membangun sistem backend yang scalable. Namun, seiring dengan berkembangnya kompleksitas…...
SetrixDB: a set engine in Go — exact set intersection over IDs (and where it loses)
17+ hour, 22+ min ago (754+ words) “Given an ID, is it in this list?” and “which IDs are in both lists at the same time?” These look like textbook exercises. But when those lists hold millions or billions of elements and must answer in microseconds — in…...
Life Before Generics
18+ hour, 26+ min ago (1504+ words) I came from PHP, which has no type parameter, into a Go that didn't have one either. Both languages taught the same habit: substitute discipline for the compiler. Here is the audit that found 44 copies of four functions, the generic…...
One Read Core, and the Code That Proves It
18+ hour, 25+ min ago (716+ words) Not sketches: the generic core that carries history for every entity in my service, the declaration that instantiates it for one domain, and a live consumer sitting on top of it that I am not proud of - it was never…...
Java vs Go in 2026: I Rewrote Our API in Go and Regretted Half of It
23+ hour, 34+ min ago (19+ words) An engineer's hands-on comparison of Java and Go for backend development in 2026 — concurrency, ecosystem, and real production lessons....
How I Maintain A Tour of Go in 11 Languages
1+ day, 4+ hour ago (1123+ words) A Tour of Go is one of the first resources many developers encounter when learning Go. It is interactive, concise, and closely connected to the Go ecosystem. But for developers who are more comfortable learning technical concepts in their native…...
Redis 8.10's compact hashes need HIMPORT or a restart to kick in
1+ day, 7+ hour ago (769+ words) I ran Redis 8.10.1 in Docker and tested it against two schemas, a throughput benchmark, a concurrency check, and the two ways to actually trigger the new encoding: the new HIMPORT command, and a server restart. Redis 8.10 adds hash templates: an…...
The Go GC Problem Nobody Sees in the Heap Profile
1+ day, 4+ hour ago (35+ words) Your Go service is using too much CPU. You open the heap profile. You look at the biggest objects. Nothing seems particularly alarming. No obvious …...