CacheKit Docs

High-performance cache policies and supporting data structures.

View the Project on GitHub OxidizeLabs/cachekit

Clock Ring (Second-Chance)

What It Is

The Clock policy maintains a circular set of slots and a moving “hand”. Each slot has a reference bit.

This is a general-purpose DS for:

Core Types

Minimal SlotMeta:

Operations

touch(key)

insert(key, value)

evict_one() -> K

Complexity

Implementation Notes