List of usage examples for org.apache.lucene.facet.taxonomy LRUHashMap LRUHashMap
public LRUHashMap(int maxSize)
From source file:org.meresco.lucene.numerate.Cache.java
License:Open Source License
Cache(int max_cache_size, Runnable batchnotify) { this.max_cache_size = max_cache_size; this.batchnotify = batchnotify; this.uri2ord = new LRUHashMap<String, Integer>(max_cache_size); }