Go based implementation of LRFU (least recently frequently used) cache as set forth in Donghee Lee et al., "LRFU: a spectrum of policies that subsumes the least recently used and least frequently used policies,".
- It's free.
- No concurrent operations. No work was put into making the cache safe for concurrent or parallel access.
- Simple cache implementation. No attention was given to optimizing data structures space or operations time complexity.
- Lack of tests and benchmarks. At the moment benchmarking and test coverage are lacking.
Below are some possible alternatives to this library.
This implementation is licensed under the MIT License LICENSE.
All constributions are licensed under MIT license, unless otherwise stated.