go-language

Tag

Cards List
#go-language

Building Gin: Simple over Easy

Hacker News Top · 2d ago Cached

The author recounts the creation of the Gin web framework for Go, emphasizing the design principle of 'simple over easy' to balance between magic and boilerplate, and how the framework's context object evolved to be compatible with Go's standard library.

0 favorites 0 likes
#go-language

Shard your locks: benchmarking 6 Go cache designs

Lobsters Hottest · 6d ago Cached

This article benchmarks six Go in-memory cache designs under different workloads, finding that a sharded map with 256 locks outperforms single mutex and RWMutex approaches, especially on multi-core systems.

0 favorites 0 likes
#go-language

What we learned using AI agents to refactor a monolith

Lobsters Hottest · 2026-05-15 Cached

1Password shares lessons from using AI agents to analyze and refactor their large Go monolith, detailing successes in deterministic tooling and challenges in applying agents to live production changes.

0 favorites 0 likes
#go-language

Notes from Optimizing CPU-Bound Go Hot Paths

Hacker News Top · 2026-05-12 Cached

The article discusses performance optimization techniques for CPU-bound Go code, highlighting the limitations of generics and interface abstractions due to lack of inlining, and advocates for code duplication in hot paths. It provides examples from a Brotli port and deep-dive benchmarking.

0 favorites 0 likes
#go-language

Apple is increasing my cortisol levels

Hacker News Top · 2026-05-09 Cached

A developer discusses the frustration and high costs associated with distributing macOS software, specifically citing Apple's quarantine mechanisms and the expensive Apple Developer Program required for code signing.

0 favorites 0 likes
← Back to home

Submit Feedback