Lucene.Net.Index.LiveIndexWriterConfig.SetUseCompoundFile C# (CSharp) Метод

SetUseCompoundFile() публичный Метод

Sets if the IndexWriter should pack newly written segments in a compound file. Default is true.

Use false for batch indexing with very large ram buffer settings.

Note: To control compound file usage during segment merges see MergePolicy#setNoCFSRatio(double) and MergePolicy#setMaxCFSSegmentSizeMB(double). this setting only applies to newly created segments.

public SetUseCompoundFile ( bool useCompoundFile ) : LiveIndexWriterConfig
useCompoundFile bool
Результат LiveIndexWriterConfig
        public virtual LiveIndexWriterConfig SetUseCompoundFile(bool useCompoundFile)
        {
            this.useCompoundFile = useCompoundFile;
            return this;
        }