Interface IIndexCommitter
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
Committed
Occurs when the index has been successfully committed.
event EventHandler? Committed