Determine what set of merge operations are now necessary on the index. {@link IndexWriter} calls this whenever there is a change to the segments. This call is always synchronized on the {@link IndexWriter} instance so only one thread at a time will call this method.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public abstract MergePolicy..::..MergeSpecification FindMerges(
	SegmentInfos segmentInfos
)
Visual Basic
Public MustOverride Function FindMerges ( _
	segmentInfos As SegmentInfos _
) As MergePolicy..::..MergeSpecification
Visual C++
public:
virtual MergePolicy..::..MergeSpecification^ FindMerges(
	SegmentInfos^ segmentInfos
) abstract

Parameters

segmentInfos
Type: Lucene.Net.Index..::..SegmentInfos
the total set of segments in the index

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Index.MergePolicy.FindMerges(Lucene.Net.Index.SegmentInfos)"]

See Also