Class MergeState.DocMap
Remaps docids around deletes during merge
Inheritance
MergeState.DocMap
Assembly: Lucene.Net.dll
Syntax
public abstract class MergeState.DocMap
Properties
HasDeletions
Returns true
if there are any deletions.
Declaration
public virtual bool HasDeletions { get; }
Property Value
MaxDoc
Returns the total number of documents, ignoring
deletions.
Declaration
public abstract int MaxDoc { get; }
Property Value
NumDeletedDocs
Returns the number of deleted documents.
Declaration
public abstract int NumDeletedDocs { get; }
Property Value
NumDocs
Returns the number of not-deleted documents.
Declaration
public int NumDocs { get; }
Property Value
Methods
Build(AtomicReader)
Declaration
public static MergeState.DocMap Build(AtomicReader reader)
Parameters
Returns
Get(int)
Returns the mapped docID corresponding to the provided one.
Declaration
public abstract int Get(int docID)
Parameters
Type |
Name |
Description |
int |
docID |
|
Returns