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

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

Introduction

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

The text is from its open source code.

Subclass

org.apache.lucene.index.LogByteSizeMergePolicy has subclasses.
Click this link to see all its subclasses.

Field

doubleDEFAULT_MIN_MERGE_MB
Default minimum segment size.
doubleDEFAULT_MAX_MERGE_MB
Default maximum segment size.

Constructor

LogByteSizeMergePolicy()
Sole constructor, setting all settings to their defaults.

Method

doublegetMaxMergeMB()
Returns the largest segment (measured by total byte size of the segment's files, in MB) that may be merged with other segments.
voidsetMaxMergeMB(double mb)

Determines the largest segment (measured by total byte size of the segment's files, in MB) that may be merged with other segments.

voidsetMinMergeMB(double mb)
Sets the minimum size for the lowest level segments.