| Package | Description | 
|---|---|
| org.apache.hadoop.hbase.regionserver | 
| Modifier and Type | Field and Description | 
|---|---|
| protected LruHashMap.Entry<K,V> | LruHashMap.Entry. nextThe next entry in the hash chain (for collisions) | 
| protected LruHashMap.Entry<K,V> | LruHashMap.Entry. nextPtrThe next entry in the LRU list (towards MRU) | 
| protected LruHashMap.Entry<K,V> | LruHashMap.Entry. prevPtrThe previous entry in the LRU list (towards LRU) | 
| Modifier and Type | Method and Description | 
|---|---|
| LruHashMap.Entry | LruHashMap. getHeadPtr()Get the head of the linked list (least recently used). | 
| protected LruHashMap.Entry<K,V> | LruHashMap.Entry. getNextPtr()Returns the next pointer for the entry in teh LRU. | 
| protected LruHashMap.Entry<K,V> | LruHashMap.Entry. getPrevPtr()Returns the previous pointer for the entry in the LRU. | 
| LruHashMap.Entry | LruHashMap. getTailPtr()Get the tail of the linked list (most recently used). | 
| Modifier and Type | Method and Description | 
|---|---|
| List<LruHashMap.Entry<K,V>> | LruHashMap. entryLruList()Debugging function that returns a List sorted by access time. | 
| Set<LruHashMap.Entry<K,V>> | LruHashMap. entryTableSet()Debugging function that returns a Set of all entries in the hash table. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | LruHashMap.Entry. setNextPtr(LruHashMap.Entry<K,V> nextPtr)Sets the next pointer for the entry in the LRU. | 
| protected void | LruHashMap.Entry. setPrevPtr(LruHashMap.Entry<K,V> prevPtr)Sets the previous pointer for the entry in the LRU. | 
Copyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.