Package org.egothor.cache.fifo

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

See:
          Description

Class Summary
FifoCache<K,V> Implementation of Cache that uses a FIFO list that removes the oldest (first) entry as an eviction policy.
FifoEntry<T> Represents an entry in a linked list that can store a value.
FifoList<T> Represents a FIFO (First-In First-Out) list.
 

Package org.egothor.cache.fifo Description

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