Example usage for org.apache.lucene.facet.taxonomy LRUHashMap LRUHashMap

List of usage examples for org.apache.lucene.facet.taxonomy LRUHashMap LRUHashMap

Introduction

In this page you can find the example usage for org.apache.lucene.facet.taxonomy LRUHashMap LRUHashMap.

Prototype

public LRUHashMap(int maxSize) 

Source Link

Document

Create a new hash map with a bounded size and with least recently used entries removed.

Usage

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);
}