Constructs an IndexWriter for the index in
, first creating it if it does not
already exist. Text will be analyzed with
.
NOTE: autoCommit (see above) is set to false with this
constructor.
CopyC#
d
CopyC#
a
has this index open ( could not
be obtained)
CopyC#
write.lock
read/written to or if there is any other low-level
IO error
Namespace: Lucene.Net.IndexAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public IndexWriter( Directory d, Analyzer a, IndexWriter..::..MaxFieldLength mfl ) |
Visual Basic |
---|
Public Sub New ( _ d As Directory, _ a As Analyzer, _ mfl As IndexWriter..::..MaxFieldLength _ ) |
Visual C++ |
---|
public: IndexWriter( Directory^ d, Analyzer^ a, IndexWriter..::..MaxFieldLength^ mfl ) |
Parameters
- d
- Type: Lucene.Net.Store..::..Directory
the index directory
- a
- Type: Lucene.Net.Analysis..::..Analyzer
the analyzer to use
- mfl
- Type: Lucene.Net.Index..::..IndexWriter..::..MaxFieldLength
Maximum field length in number of terms/tokens: LIMITED, UNLIMITED, or user-specified via the MaxFieldLength constructor.