Go Development Architecture Practice
Author

Go Development Architecture Practice

Daily sharing of Golang-related technical articles, practical resources, language news, tutorials, real-world projects, and more. Looking forward to growing together. Let's go!

79
Articles
0
Likes
79
Views
0
Comments
Recent Articles

Latest from Go Development Architecture Practice

79 recent articles
Go Development Architecture Practice
Go Development Architecture Practice
Feb 13, 2026 · Cloud Native

How to Shrink Docker Images by Up to 98%: Practical Labs and Tips

This step‑by‑step guide explains Docker image layers, demonstrates seven labs that progressively reduce image size using smaller base images, RUN command chaining, export/import compression, scratch builds, dynamic library extraction, and static Go binaries, achieving reductions from hundreds of megabytes to just a few megabytes.

DevOpsDockercontainer
0 likes · 15 min read
How to Shrink Docker Images by Up to 98%: Practical Labs and Tips
Go Development Architecture Practice
Go Development Architecture Practice
Feb 4, 2026 · Backend Development

Master Go Rate Limiting: Sliding Window, Token Bucket, and Redis Techniques

This article presents four practical Go rate‑limiting implementations—a sliding‑window algorithm, a token‑bucket approach, the built‑in golang.org/x/time/rate package, and a Redis‑backed distributed limiter—complete with code samples, usage guidance, and recommendations for different deployment scenarios.

Rate LimitingRedisToken Bucket
0 likes · 11 min read
Master Go Rate Limiting: Sliding Window, Token Bucket, and Redis Techniques
Go Development Architecture Practice
Go Development Architecture Practice
Jan 28, 2026 · Backend Development

Accelerate Go Projects with Mix‑Go: Build CLI, API, Web, gRPC & Worker Pools Fast

This guide introduces Mix‑Go, a Go‑based rapid‑development framework that provides interactive scaffolding, command‑line prototyping, and a DI/IoC container, and walks through installing the tool, generating project skeletons, and creating functional CLI, API, Web, WebSocket, gRPC services and a worker‑pool queue consumer with complete code examples.

APICLIGo
0 likes · 28 min read
Accelerate Go Projects with Mix‑Go: Build CLI, API, Web, gRPC & Worker Pools Fast
Go Development Architecture Practice
Go Development Architecture Practice
Jan 28, 2026 · Backend Development

Mastering gRPC with Python: From Basics to Real‑World Microservices

This guide explains the fundamentals of gRPC, why it uses HTTP/2 and Protocol Buffers, walks through writing and compiling .proto files, provides complete Python server and client examples, and outlines common microservice and Kubernetes use cases, giving developers a practical end‑to‑end workflow.

Protocol BuffersPythonbackend development
0 likes · 11 min read
Mastering gRPC with Python: From Basics to Real‑World Microservices
Go Development Architecture Practice
Go Development Architecture Practice
Jan 17, 2026 · Backend Development

A Rapid Tour of 30+ Popular Web Frameworks Across Languages

This article provides concise, language‑by‑language overviews of more than thirty widely used web frameworks—including Ruby on Rails, ASP.NET, Vapor, Django, Flask, Phoenix, Laravel, Next.js, Astro, Spring Boot, Express.js, Gin, and Go‑specific frameworks—highlighting their core concepts, typical use cases, and notable projects built with them.

GoJavaScriptPython
0 likes · 16 min read
A Rapid Tour of 30+ Popular Web Frameworks Across Languages
Go Development Architecture Practice
Go Development Architecture Practice
Jan 17, 2026 · Databases

What New SQL Features Did SQLite Add in 2018?

This article reviews SQLite's 2018 enhancements, covering boolean literals, window functions, the FILTER clause, upsert syntax, column‑renaming support, and related API changes, while also noting the remaining limitations compared with other major database systems.

Boolean LiteralsDatabase FeaturesSQL
0 likes · 10 min read
What New SQL Features Did SQLite Add in 2018?