| Package | Description | 
|---|---|
| com.j_spaces.map.eviction | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | FIFOEvictionStrategyfirst-in first-out (as opposed to LIFO, last-in first-out) Items come out in the same order they
 came in. | 
| class  | LFUEvictionStrategyThe heap LFUDA ( Least Frequently Used) policy keeps popular objects in cache regardless of their
 size and thus optimizes byte hit rate at the expense of hit rate since one large, popular object
 will prevent many smaller, slightly less popular objects from being cached. | 
| class  | LRUEvictionStrategyThe LRU policies keep recently referenced objects. | 
| class  | NoneEvictionStrategyNo eviction  strategy | 
| class  | SizeEvictionStrategyFirst try to evict the biggest object. | 
Copyright © GigaSpaces.