An open API service indexing awesome lists of open source software.

https://github.com/vimpunk/w-tinylfu

W-TinyLFU cache C++11 header only implementation
https://github.com/vimpunk/w-tinylfu

cache cpp11 cpp14

Last synced: 10 months ago
JSON representation

W-TinyLFU cache C++11 header only implementation

Awesome Lists containing this project

README

          

# Window-TinyLFU Cache
This is a barebones C++11 header-only implementation of the state-of-the-art cache admission policy proposed in [this paper](https://arxiv.org/abs/1512.00727) with details borrowed from [Caffeine](https://github.com/ben-manes/caffeine)'s own implementation.

### Note
My original use case for this cache was very specific, so some features are absent - most notably thread-safety and hash collision protection.