Package org.egothor.cache.lru

Provides classes that help implementing a cache using LRU algorithm as an eviction policy.

See:
          Description

Class Summary
LruCache<K,V> Implementation of Cache that uses a LRU list that removes the least recently used entry as an eviction policy.
LruList<T> Represents a LRU (Least Recently Used) list.
 

Package org.egothor.cache.lru Description

Provides classes that help implementing a cache using LRU algorithm as an eviction policy.