| Package | Description | 
|---|---|
| com.j_spaces.map.eviction | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
FIFOEvictionStrategy
first-in first-out (as opposed to LIFO, last-in first-out) Items come out in the same order they
 came in. 
 | 
class  | 
LFUEvictionStrategy
The 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  | 
LRUEvictionStrategy
The LRU policies keep recently referenced objects. 
 | 
class  | 
NoneEvictionStrategy
No eviction  strategy 
 | 
class  | 
SizeEvictionStrategy
First try to evict the biggest object. 
 | 
Copyright © GigaSpaces.