Lucene.Net.Index IndexWriterConfig in C# (CSharp): 60 esempi trovati. Questi sono i migliori esempi reali in C# (CSharp) per Lucene.Net.Index.IndexWriterConfig, estratti da progetti open source. Li puoi valutare, per aiutarci a migliorare la qualità dei nostri esempi.
Holds all the configuration that is used to create an IndexWriter. Once IndexWriter has been created with this object, changes to this object will not affect the IndexWriter instance. For that, use LiveIndexWriterConfig that is returned from IndexWriter#getConfig().
All setter methods return IndexWriterConfig to allow chaining settings conveniently, for example:
IndexWriterConfig conf = new IndexWriterConfig(analyzer); conf.setter1().setter2();