CacheKit Docs

High-performance cache policies and supporting data structures.

View the Project on GitHub OxidizeLabs/cachekit

Frequency Buckets (O(1) LFU Core)

What It Is

Bucketed LFU keeps entries grouped by frequency, with O(1) promotion and O(1) eviction using min_freq.

Generalized DS:

Core Types

Where BucketMeta holds:

Operations

touch(id)

evict()

Notes