Table of Contents

Interface IIndexCommitter

Namespace
Examine.Lucene.Providers
Assembly
Examine.Lucene.dll

This queues up a commit for the index so that a commit doesn't happen on every individual write since that is quite expensive

public interface IIndexCommitter : IDisposable
Inherited Members

Methods

CommitNow()

Commits the index to directory

void CommitNow()

ScheduleCommit()

Schedules the index to be committed to the directory

void ScheduleCommit()

Events

CommitError

Occurs when an error happens during the commit process.

event EventHandler<IndexingErrorEventArgs> CommitError

Event Type

EventHandler<IndexingErrorEventArgs>

Committed

Occurs when the index has been successfully committed.

event EventHandler? Committed

Event Type

EventHandler