Class TermDocsCache
- java.lang.Object
 - 
- org.apache.jackrabbit.core.query.lucene.TermDocsCache
 
 
- 
- 
Constructor Summary
Constructors Constructor Description TermDocsCache(IndexReader reader, String field)Creates a new cache for the givenreaderandfield. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TermDocstermDocs(Term t)Returns theTermDocsfor the given term. 
 - 
 
- 
- 
Constructor Detail
- 
TermDocsCache
public TermDocsCache(IndexReader reader, String field)
Creates a new cache for the givenreaderandfield.- Parameters:
 reader- the index reader.field- the field name of the terms to potentially cache.
 
 - 
 
- 
Method Detail
- 
termDocs
public TermDocs termDocs(Term t) throws IOException
Returns theTermDocsfor the given term.- Parameters:
 t- the term.- Returns:
 - the term docs for the given term.
 - Throws:
 IOException- if an error occurs while reading from the index.
 
 - 
 
 -