org.apache.lucene.util.cache
Class SimpleLRUCache
java.lang.Object
org.apache.lucene.util.cache.Cache
org.apache.lucene.util.cache.SimpleMapCache
org.apache.lucene.util.cache.SimpleLRUCache
public class SimpleLRUCache
- extends SimpleMapCache
Simple LRU cache implementation that uses a LinkedHashMap.
This cache is not synchronized, use Cache.synchronizedCache(Cache)
if needed.
Constructor Summary |
SimpleLRUCache(int cacheSize)
Creates a last-recently-used cache with the specified size. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SimpleLRUCache
public SimpleLRUCache(int cacheSize)
- Creates a last-recently-used cache with the specified size.
Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.