Class | Description |
---|---|
LFUCache<Key,Value> |
LFU cache implementation based on http://dhruvbird.com/lfu.pdf, with some notable differences:
Frequency list is stored as an array with no next/prev pointers between nodes: looping over the array should be faster and more CPU-cache friendly than
using an ad-hoc linked-pointers structure.
|
RecoverableRandomAccessFile |
Copyright © 2005–2021 FuseSource, Corp.. All rights reserved.