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.

Latest in Go


dev.to > puffball1567 > go-concurrency-how-to-run-parallel-tasks-with-goroutines-channels-and-context-59ib

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…...


finance.biggo.com > podcast > 9cd56007f9f6cd22

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…...


dev.to > hellogung > menavigasi-tantangan-concurrency-di-go-mengatasi-data-race-dan-optimasi-performa-di-tahun-2026-1626

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…...


dev.to > tgosoul > setrixdb-a-set-engine-in-go-exact-set-intersection-over-ids-and-where-it-loses-39dm

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…...


dev.to > anton_brilliantov > life-before-generics-35ci

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…...


dev.to > anton_brilliantov > one-read-core-and-the-code-that-proves-it-39ia

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…...


medium.com > @backendbyeli > java-vs-go-in-2026-i-rewrote-our-api-in-go-and-regretted-half-of-it-927df462c0c6

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....


dev.to > shuijingwan > how-i-maintain-a-tour-of-go-in-11-languages-ahl

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…...


dev.to > alexgeorgiev17 > redis-810s-compact-hashes-need-himport-or-a-restart-to-kick-in-hj8

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…...


medium.com > @optimzationking2 > the-go-gc-problem-nobody-sees-in-the-heap-profile-12476d89bd70

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 …...