|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.lucene.search.Filter org.apache.lucene.search.SpanFilter org.apache.lucene.search.CachingSpanFilter
public class CachingSpanFilter
Wraps another SpanFilter's result and caches it. The purpose is to allow filters to simply filter, and then wrap with this class to add caching.
Constructor Summary | |
---|---|
CachingSpanFilter(SpanFilter filter)
New deletions always result in a cache miss, by default ( CachingWrapperFilter.DeletesMode.RECACHE . |
|
CachingSpanFilter(SpanFilter filter,
CachingWrapperFilter.DeletesMode deletesMode)
|
Method Summary | |
---|---|
SpanFilterResult |
bitSpans(IndexReader reader)
Returns a SpanFilterResult with true for documents which should be permitted in search results, and false for those that should not and Spans for where the true docs match. |
boolean |
equals(Object o)
|
DocIdSet |
getDocIdSet(IndexReader reader)
Creates a DocIdSet enumerating the documents that should be
permitted in search results. |
int |
hashCode()
|
String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public CachingSpanFilter(SpanFilter filter)
CachingWrapperFilter.DeletesMode.RECACHE
.
filter
- Filter to cache results ofpublic CachingSpanFilter(SpanFilter filter, CachingWrapperFilter.DeletesMode deletesMode)
filter
- Filter to cache results ofdeletesMode
- See CachingWrapperFilter.DeletesMode
Method Detail |
---|
public DocIdSet getDocIdSet(IndexReader reader) throws IOException
Filter
DocIdSet
enumerating the documents that should be
permitted in search results. NOTE: null can be
returned if no documents are accepted by this Filter.
Note: This method will be called once per segment in
the index during searching. The returned DocIdSet
must refer to document IDs for that segment, not for
the top-level reader.
getDocIdSet
in class Filter
reader
- a IndexReader
instance opened on the index currently
searched on. Note, it is likely that the provided reader does not
represent the whole underlying index i.e. if the index has more than
one segment the given reader only represents a single segment.
IOException
DocIdBitSet
public SpanFilterResult bitSpans(IndexReader reader) throws IOException
SpanFilter
bitSpans
in class SpanFilter
reader
- The IndexReader
to load position and DocIdSet information from
SpanFilterResult
IOException
- if there was an issue accessing the necessary informationpublic String toString()
toString
in class Object
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |