Skip to content
package gobackend

Practical Go & Backend Engineering

Learn Go by building production systems. Practical guides on Go, APIs, PostgreSQL, microservices, cloud, testing and performance.

funcFeatured()[]Article

View all →

funcLatest()[]Article

Architecture

Designing a Production-Ready Go Backend: Architecture, Reliability and Operations

How the pieces of a production Go backend fit together: application architecture, reliability patterns, data, messaging, security, observability, and deployment — plus when to choose a monolith, modular monolith, or microservices.

16 min
PostgreSQL

Scaling PostgreSQL for Go Applications: Read Replicas, Connection Pools and Query Performance

A practical order of operations for scaling PostgreSQL under a growing Go service: query optimization first, then pooling, then read replicas — and why the order matters.

13 min
Go

Advanced Go Concurrency: Worker Pools, Backpressure and Bounded Concurrency

Why unbounded goroutines don't scale: semaphore-based bounded concurrency, backpressure, errgroup, goroutine leaks, and a real benchmark comparing the two.

13 min
PostgreSQL

Database Transactions in Go: Isolation Levels, Locks and Real-World Failures

PostgreSQL transaction isolation levels in Go, explained through a real race condition: lost updates, SELECT FOR UPDATE, and why app-level locking isn't enough.

13 min
Cloud

Kubernetes for Go Developers: Deploying a Production-Ready Go API

What actually happens when Kubernetes sends your Go process SIGTERM, and the Deployment, Service, probe, and resource config a production Go API needs.

13 min
Security

Securing Go REST APIs: Authentication, Authorization and Common Attack Surfaces

Practical Go API security: authentication vs authorization, JWT and refresh tokens, object-level authorization, SQL injection, CORS, and a production checklist.

14 min

funcTopics()[]Category

New here? Follow the Go roadmap for a structured path through all of it.

Open Source

GoBackend Starter

A production-oriented Go backend template: Chi, PostgreSQL, SQLC, JWT authentication, structured logging, Docker, and tests — the same architecture used throughout the articles on this site.

GoPostgreSQLSQLCDockerJWTTesting
View the project

$ git clone github.com/gobackend-dev/gobackend-starter

$ cd gobackend-starter

$ cp .env.example .env

$ docker compose up

# API running at localhost:8080

funcWhyGoBackend()[]Reason

Production-first

Every guide is built around real systems, not toy examples.

Backend-focused

Go, PostgreSQL, microservices, and the operational details in between.

No fluff

Problem, reasoning, implementation, and trade-offs — nothing padded.

Tested code

Examples reflect the standard library and code that actually compiles.

Get practical Go & backend engineering articles

One email when a new guide ships. No spam, unsubscribe anytime.

Placeholder form — not yet connected to an email provider.