Class IndexWriter.DocStats

  • Enclosing class:
    IndexWriter

    public static final class IndexWriter.DocStats
    extends java.lang.Object
    DocStats for this index
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int maxDoc
      The total number of docs in this index, including docs not yet flushed (still in the RAM buffer), not counting deletions.
      int numDocs
      The total number of docs in this index, including docs not yet flushed (still in the RAM buffer), and including deletions.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private DocStats​(int maxDoc, int numDocs)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • maxDoc

        public final int maxDoc
        The total number of docs in this index, including docs not yet flushed (still in the RAM buffer), not counting deletions.
      • numDocs

        public final int numDocs
        The total number of docs in this index, including docs not yet flushed (still in the RAM buffer), and including deletions. NOTE: buffered deletions are not counted. If you really need these to be counted you should call IndexWriter.commit() first.
    • Constructor Detail

      • DocStats

        private DocStats​(int maxDoc,
                         int numDocs)