This content has been marked as final.
Show 2 replies
-
1. Re: LFU Eviction
s.lisovoy Sep 26, 2018 5:00 PM (in response to marg)It's ridiculous, but its policy even declared on features page http://infinispan.org/features/
but in real - there no this policy at all.
It's a shame
-
2. Re: LFU Eviction
william.burns Sep 26, 2018 5:28 PM (in response to s.lisovoy)Infinispan supports TinyLFU via Caffeine when using an on heap based data container. This was changed in Infinispan 9.0 with [ISPN-6998] Replace bounded hash map with alternative - JBoss Issue Tracker
If you wish to find more info about it you can check out GitHub - ben-manes/caffeine: A high performance caching library for Java 8
You can also read more about eviction in Infinispan from Infinispan 9.4 User Guide
Note that when using off heap data container, we only support LRU eviction algorithm.