C# 클래스 Lucene.Net.Queries.TermsFilter

Constructs a filter for docs matching any of the terms added to this class. Unlike a RangeFilter this can be used for filtering on multiple terms that are not necessarily in a sequence. An example might be a collection of primary keys from a database query result or perhaps a choice of "category" labels picked by the end user. As a filter, this is much faster than the equivalent query (a BooleanQuery with many "should" TermQueries)
상속: Lucene.Net.Search.Filter
파일 보기 프로젝트 열기: paulirwin/lucene.net 1 사용 예제들

공개 메소드들

메소드 설명
Equals ( object obj ) : bool
GetDocIdSet ( Lucene.Net.Index.AtomicReaderContext context, Bits acceptDocs ) : Lucene.Net.Search.DocIdSet
GetHashCode ( ) : int
TermsFilter ( ) : System

Creates a new TermsFilter from the given array. The array can contain duplicate terms and multiple fields.

TermsFilter ( List terms ) : System

Creates a new TermsFilter from the given list. The list can contain duplicate terms and multiple fields.

TermsFilter ( string field ) : System

Creates a new TermsFilter from the given BytesRef array for a single field.

TermsFilter ( string field, List terms ) : System

Creates a new TermsFilter from the given BytesRef list for a single field.

ToString ( ) : string

비공개 메소드들

메소드 설명
TermsFilter ( FieldAndTermEnum iter, int length ) : System

메소드 상세

Equals() 공개 메소드

public Equals ( object obj ) : bool
obj object
리턴 bool

GetDocIdSet() 공개 메소드

public GetDocIdSet ( Lucene.Net.Index.AtomicReaderContext context, Bits acceptDocs ) : Lucene.Net.Search.DocIdSet
context Lucene.Net.Index.AtomicReaderContext
acceptDocs Bits
리턴 Lucene.Net.Search.DocIdSet

GetHashCode() 공개 메소드

public GetHashCode ( ) : int
리턴 int

TermsFilter() 공개 메소드

Creates a new TermsFilter from the given array. The array can contain duplicate terms and multiple fields.
public TermsFilter ( ) : System
리턴 System

TermsFilter() 공개 메소드

Creates a new TermsFilter from the given list. The list can contain duplicate terms and multiple fields.
public TermsFilter ( List terms ) : System
terms List
리턴 System

TermsFilter() 공개 메소드

Creates a new TermsFilter from the given BytesRef array for a single field.
public TermsFilter ( string field ) : System
field string
리턴 System

TermsFilter() 공개 메소드

Creates a new TermsFilter from the given BytesRef list for a single field.
public TermsFilter ( string field, List terms ) : System
field string
terms List
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string