mirror of https://github.com/apache/lucene.git
LUCENE-10568: fix javadocs errors in IndexWriter.DocStats (#884)
This commit is contained in:
parent
c577508630
commit
de8a6998d7
|
@ -6198,14 +6198,15 @@ public class IndexWriter
|
|||
/** DocStats for this index */
|
||||
public static final class DocStats {
|
||||
/**
|
||||
* The total number of docs in this index, including docs not yet flushed (still in the RAM
|
||||
* buffer), not counting deletions.
|
||||
* The total number of docs in this index, counting docs not yet flushed (still in the RAM
|
||||
* buffer), and also counting deleted docs. <b>NOTE:</b> buffered deletions are not counted. If
|
||||
* you really need these to be counted you should call {@link IndexWriter#commit()} first.
|
||||
*/
|
||||
public final int maxDoc;
|
||||
|
||||
/**
|
||||
* The total number of docs in this index, including docs not yet flushed (still in the RAM
|
||||
* buffer), and including deletions. <b>NOTE:</b> buffered deletions are not counted. If you
|
||||
* really need these to be counted you should call {@link IndexWriter#commit()} first.
|
||||
* The total number of docs in this index, counting docs not yet flushed (still in the RAM
|
||||
* buffer), but not counting deleted docs.
|
||||
*/
|
||||
public final int numDocs;
|
||||
|
||||
|
|
Loading…
Reference in New Issue