Class TinyCacheSketch
- java.lang.Object
-
- com.github.benmanes.caffeine.cache.simulator.admission.tinycache.TinyCacheSketch
-
public final class TinyCacheSketch extends Object
This is the TinyCache sketch that is based on TinySet and TinyTable. It is adopted for fast operation and bounded memory footprint. When a set is full, a victim is selected at random from the full set. (basically some sort of random removal cache).
-
-
Constructor Summary
Constructors Constructor Description TinyCacheSketch(int nrSets, int itemsPerSet, int randomSeed)
-