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 givenreader
andfield
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TermDocs
termDocs(Term t)
Returns theTermDocs
for the given term.
-
-
-
Constructor Detail
-
TermDocsCache
public TermDocsCache(IndexReader reader, String field)
Creates a new cache for the givenreader
andfield
.- 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 theTermDocs
for 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.
-
-