Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 523 Bytes

File metadata and controls

9 lines (6 loc) · 523 Bytes

Go Latency Patterns

A collection of practical Go examples demonstrating patterns and techniques for reducing latency in backend services. Each pattern lives in its own directory with a fully working demo, Docker Compose stack, and monitoring via Prometheus + Grafana.

Patterns

Pattern Description Directory
Singleflight Deduplicate concurrent requests to prevent cache stampedes and protect the database from redundant load singleflight/