Caching Algorithm
Posted: Wed Mar 04, 2015 5:23 pm
In early versions of PrimoCache (when it was called FancyCache), there were two algorithms available for caching:
Now that PrimoCache is out of beta, I'm curious, which algorithm does it use? And is this overrideable?
Thanks,
Soen
- LRU (Least Recently Used): Discards the least recently used data first.
- LFU-R (Least Frequently Used): Counts how often a cache block is needed. Cache blocks that are used least often will be discarded first.
Now that PrimoCache is out of beta, I'm curious, which algorithm does it use? And is this overrideable?
Thanks,
Soen