-
You would probably find [TinyLFU](https://arxiv.org/pdf/1512.00727.pdf) an interesting approach, as it focuses on admission rather than eviction. This is done by using a popularity sketch to probabili…
-
Currently, Moka cache [uses TinyLFU](https://github.com/moka-rs/moka/wiki#admission-and-eviction-policies) as the admission/eviction policies (with a small buffer in front of the LFU filter). While it…
-
-
Turns our my thesis professor has written an article about least frequently used cache management and it performs even better than ARC plus was integrated into C*:
https://arxiv.org/pdf/1512.00727.pd…
-
I expected that using TinyLFU would overwrite a value when setting it, just like Redis. However, overwriting a value doesn't seem to work. From what I can gather of the TinyLFU internals, it doesn't e…
-
Is there any plan to introduce TinyLFU (Tiny Least Frequently Used) or W-TinyLFU (Windows-TinyLFU)algorithm ?
-
Just saw this pass by on Hacker News: https://blog.jasony.me/system/cache/2023/08/01/s3fifo. Seems interesting. I wonder if it outperforms (not just in hit ratio, but also CPU time to calculate whethe…
aktau updated
2 months ago
-
As of `v0.12.4`, Moka supports only the TinyLFU cache policy. However, there are some requests and plans to support other cache policies. I am going to implement the LRU policy without refactoring the…
-
Commenting this two lines improves hits count on testdata/domains.txt
https://github.com/dgryski/go-clockpro/blob/edc6d3eeb96ef7464a530f3ace7570191150b215/clockpro.go#L119-L120
Even reading slides…
-
Does it possible to create ARC cache implementation?