Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
samber avatar

Golang Samber Hot

  • 33.1k installs
  • 2.8k repo stars
  • Updated July 27, 2026
  • samber/cc-skills-golang

samber/hot is a type-safe in-memory cache for Go with 9 eviction algorithms, TTL, loader chains, and Prometheus metrics for production observability.

About

samber/hot is a generic, type-safe in-memory caching library for Go 1.22+ with 9 eviction algorithms. Developers use it to reduce latency and backend pressure when repeatedly loading the same medium-to-low cardinality resources at high frequency. It matters because the wrong algorithm (LRU when frequency dominates) tanks hit rate; W-TinyLFU is a safe default for mixed workloads.

  • 9 eviction algorithms (LRU, LFU, W-TinyLFU, S3FIFO, ARC, etc.)
  • TTL, loader chains, singleflight deduplication, stale-while-revalidate
  • Prometheus metrics and capacity sizing guidance

Golang Samber Hot by the numbers

  • 33,101 all-time installs (skills.sh)
  • +423 installs in the week ending Jul 28, 2026 (Skillselion tracking)
  • Ranked #27 of 4,386 Backend & APIs skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
At a glance

golang-samber-hot capabilities & compatibility

Use cases
devops
From the docs

What golang-samber-hot says it does

Start with `hot.WTinyLFU`. Switch only when profiling shows the miss rate is too high for your SLO.
SKILL.md
npx skills add https://github.com/samber/cc-skills-golang --skill golang-samber-hot

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs33.1k
repo stars2.8k
Security audit3 / 3 scanners passed
Last updatedJuly 27, 2026
Repositorysamber/cc-skills-golang

What it does

In-memory caching with configurable eviction algorithms to reduce latency and backend load for frequently accessed data.

Who is it for?

Caching frequently accessed data; reducing backend pressure; low-latency responses; user sessions; DNS; product catalogs

Skip if: Distributed caches like Redis, static small maps, or workloads with uniform access where algorithm choice adds little value.

When should I use this skill?

Same data loaded repeatedly at high frequency; latency is critical; need to reduce backend load; medium-to-low cardinality dataset

What you get

Configured hot.WTinyLFU (or workload-appropriate) cache instances with entry limits, TTL, and Go API integration code.

  • Configured hot cache instance
  • Algorithm and TTL tuning for workload

By the numbers

  • Eval configures 50k cache entries with 10-minute TTL
  • Primary eval compares hot.WTinyLFU against hot.LRU eviction

Files

SKILL.mdMarkdownGitHub ↗

Persona: You are a Go engineer who treats caching as a system design decision. You choose eviction algorithms based on measured access patterns, size caches from working-set data, and always plan for expiration, loader failures, and monitoring.

Using samber/hot for In-Memory Caching in Go

Generic, type-safe in-memory caching library for Go 1.22+ with 9 eviction algorithms, TTL, loader chains with singleflight deduplication, sharding, stale-while-revalidate, and Prometheus metrics.

Official Resources:

This skill is not exhaustive. Please refer to library documentation and code examples for more information. Context7 can help as a discoverability platform.

go get -u github.com/samber/hot

Algorithm Selection

Pick based on your access pattern — the wrong algorithm wastes memory or tanks hit rate.

AlgorithmConstantBest forAvoid when
W-TinyLFUhot.WTinyLFUGeneral-purpose, mixed workloads (default)You need simplicity for debugging
LRUhot.LRURecency-dominated (sessions, recent queries)Frequency matters (scan pollution evicts hot items)
LFUhot.LFUFrequency-dominated (popular products, DNS)Access patterns shift (stale popular items never evict)
TinyLFUhot.TinyLFURead-heavy with frequency biasWrite-heavy (admission filter overhead)
S3FIFOhot.S3FIFOHigh throughput, scan-resistantSmall caches (<1000 items)
ARChot.ARCSelf-tuning, unknown patternsMemory-constrained (2x tracking overhead)
TwoQueuehot.TwoQueueMixed with hot/cold splitTuning complexity is unacceptable
SIEVEhot.SIEVESimple scan-resistant LRU alternativeHighly skewed access patterns
FIFOhot.FIFOSimple, predictable eviction orderHit rate matters (no frequency/recency awareness)

Decision shortcut: Start with hot.WTinyLFU. Switch only when profiling shows the miss rate is too high for your SLO.

For detailed algorithm comparison, benchmarks, and a decision tree, see Algorithm Guide.

Core Usage

Basic Cache with TTL

import "github.com/samber/hot"

cache := hot.NewHotCache[string, *User](hot.WTinyLFU, 10_000).
    WithTTL(5 * time.Minute).
    WithJanitor().
    Build()
defer cache.StopJanitor()

cache.Set("user:123", user)
cache.SetWithTTL("session:abc", session, 30*time.Minute)

value, found, err := cache.Get("user:123")

Loader Pattern (Read-Through)

Loaders fetch missing keys automatically with singleflight deduplication — concurrent Get() calls for the same missing key share one loader invocation:

cache := hot.NewHotCache[int, *User](hot.WTinyLFU, 10_000).
    WithTTL(5 * time.Minute).
    WithLoaders(func(ids []int) (map[int]*User, error) {
        return db.GetUsersByIDs(ctx, ids) // batch query
    }).
    WithJanitor().
    Build()
defer cache.StopJanitor()

user, found, err := cache.Get(123) // triggers loader on miss

Capacity Sizing

Before setting the cache capacity, estimate how many items fit in the memory budget:

1. Estimate single-item size — estimate size of the struct, add the size of heap-allocated fields (slices, maps, strings). Include the key size. A rough per-entry overhead of ~100 bytes covers internal bookkeeping (pointers, expiry timestamps, algorithm metadata). 2. Ask the developer how much memory is dedicated to this cache in production (e.g., 256 MB, 1 GB). This depends on the service's total memory and what else shares the process. 3. Compute capacitycapacity = memoryBudget / estimatedItemSize. Round down to leave headroom.

Example: *User struct ~500 bytes + string key ~50 bytes + overhead ~100 bytes = ~650 bytes/entry
         256 MB budget → 256_000_000 / 650 ≈ 393,000 items

If the item size is unknown, ask the developer to measure it with a unit test that allocates N items and checks runtime.ReadMemStats. Guessing capacity without measuring leads to OOM or wasted memory.

Common Mistakes

1. Forgetting `WithJanitor()` — without it, expired entries stay in memory until the algorithm evicts them. Always chain .WithJanitor() in the builder and defer cache.StopJanitor(). 2. Calling `SetMissing()` without missing cache config — panics at runtime. Enable WithMissingCache(algorithm, capacity) or WithMissingSharedCache() in the builder first. 3. `WithoutLocking()` + `WithJanitor()` — mutually exclusive, panics. WithoutLocking() is only safe for single-goroutine access without background cleanup. 4. Oversized cache — a cache holding everything is a map with overhead. Size to your working set (typically 10-20% of total data). Monitor hit rate to validate. 5. Ignoring loader errorsGet() returns (zero, false, err) on loader failure. Always check err, not just found.

Best Practices

1. Always set TTL — unbounded caches serve stale data indefinitely because there is no signal to refresh 2. Use WithJitter(lambda, upperBound) to spread expirations — without jitter, items created together expire together, causing thundering herd on the loader 3. Monitor with WithPrometheusMetrics(cacheName) — hit rate below 80% usually means the cache is undersized or the algorithm is wrong for the workload 4. Use WithCopyOnRead(fn) / WithCopyOnWrite(fn) for mutable values — without copies, callers mutate cached objects and corrupt shared state

For advanced patterns (revalidation, sharding, missing cache, monitoring setup), see Production Patterns.

For the complete API surface, see API Reference.

If you encounter a bug or unexpected behavior in samber/hot, open an issue at <https://github.com/samber/hot/issues>.

Cross-References

  • → See samber/cc-skills-golang@golang-performance skill for general caching strategy and when to use in-memory cache vs Redis vs CDN
  • → See samber/cc-skills-golang@golang-observability skill for Prometheus metrics integration and monitoring
  • → See samber/cc-skills-golang@golang-database skill for database query patterns that pair with cache loaders
  • → See samber/cc-skills@promql-cli skill for querying Prometheus cache metrics via CLI

Related skills

How it compares

Pick this over generic Go caching snippets when samber/hot algorithm choice and TTL sizing determine API hit rate.

FAQ

Which eviction algorithm should I pick?

Start with W-TinyLFU (balanced default). Switch only if monitoring shows hit rate is too low. LRU for recency-dominated (sessions), LFU for frequency-dominated (popular items).

How big should my cache be?

Estimate item size (struct + heap fields + overhead ~100 bytes), divide memory budget by per-item size. Example: 256 MB / 650 bytes per item ~393,000 capacity.

Is Golang Samber Hot safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Backend & APIsinfradeploy

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.