Java org.apache.lucene.index LiveIndexWriterConfig fields, constructors, methods, implement or subclass

Example usage for Java org.apache.lucene.index LiveIndexWriterConfig fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.lucene.index LiveIndexWriterConfig.

The text is from its open source code.

Method

CodecgetCodec()
Returns the current Codec .
InfoStreamgetInfoStream()
Returns InfoStream used for debugging.
MergePolicygetMergePolicy()
Returns the current MergePolicy in use by this writer.
OpenModegetOpenMode()
Returns the OpenMode set by IndexWriterConfig#setOpenMode(OpenMode) .
doublegetRAMBufferSizeMB()
Returns the value set by #setRAMBufferSizeMB(double) if enabled.
booleangetUseCompoundFile()
Returns true iff the IndexWriter packs newly written segments in a compound file.
LiveIndexWriterConfigsetMaxBufferedDocs(int maxBufferedDocs)
Determines the minimal number of documents required before the buffered in-memory documents are flushed as a new Segment.
LiveIndexWriterConfigsetRAMBufferSizeMB(double ramBufferSizeMB)
Determines the amount of RAM that may be used for buffering added documents and deletions before they are flushed to the Directory.
LiveIndexWriterConfigsetUseCompoundFile(boolean useCompoundFile)
Sets if the IndexWriter should pack newly written segments in a compound file.