Building a Highly Concurrent Cache in Go: A Hitchhiker's Guide - Konrad Reiche

Опубликовано: 14 Ноябрь 2024
на канале: Gopher Academy
3,084
113

GopherCon 2023: Building a Highly Concurrent Cache in Go: A Hitchhiker's Guide - Konrad Reiche

Why doesn’t the Go standard library provide a concurrent cache? Because Go emphasizes building custom data structures that fit your needs. In this talk, you will learn how to design, implement, and optimize a concurrent cache in Go, combing LRU & LFU eviction policy, and advanced concurrency patterns beyond sync.Mutex.