Lucene.Net.Index IndexWriter.ExpungeDeletes em C# (CSharp) - 4 exemplos encontrados. Esses são os exemplos do mundo real mais bem avaliados de Lucene.Net.Index.IndexWriter.ExpungeDeletes em C# (CSharp) extraídos de projetos de código aberto. Você pode avaliar os exemplos para nos ajudar a melhorar a qualidade deles.
Expunges all deletes from the index. When an index has many document deletions (or updates to existing documents), it's best to either call optimize or expungeDeletes to remove all unused data in the index associated with the deleted documents. To see how many deletions you have pending in your index, call IndexReader.NumDeletedDocs This saves disk space and memory usage while searching. expungeDeletes should be somewhat faster than optimize since it does not insist on reducing the index to a single segment (though, this depends on the MergePolicy; see MergePolicy.FindMergesToExpungeDeletes.). Note that this call does not first commit any buffered documents, so you must do so yourself if necessary. See also ExpungeDeletes(bool)
NOTE: if this method hits an OutOfMemoryError you should immediately close the writer. See above for details.