4 | /// Wrapper class around the Lucene indexing parameters mergeFactor, maxMergeDocs and
5 | /// maxBufferedDocs.
6 | ///
7 | /// There are two sets of these parameters. One is for regular indexing the other is for batch indexing
8 | /// triggered by FullTextSessoin.Index(Object entity)
9 | ///
10 | public class LuceneIndexingParameters
11 | {
12 | private readonly ParameterSet batchIndexParameters;
13 | private readonly ParameterSet transactionIndexParameters;
14 |
15 | #region Constructors
16 |
17 | ///