Expert: constructs an IndexWriter with a custom {@link IndexDeletionPolicy}, for the index in
CopyC#
d
, first creating it if it does not already exist. Text will be analyzed with
CopyC#
a
.

NOTE: autoCommit (see above) is set to false with this constructor.

has this index open (
CopyC#
write.lock
could not be obtained)
read/written to or if there is any other low-level IO error

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public IndexWriter(
	Directory d,
	Analyzer a,
	IndexDeletionPolicy deletionPolicy,
	IndexWriter..::..MaxFieldLength mfl
)
Visual Basic
Public Sub New ( _
	d As Directory, _
	a As Analyzer, _
	deletionPolicy As IndexDeletionPolicy, _
	mfl As IndexWriter..::..MaxFieldLength _
)
Visual C++
public:
IndexWriter(
	Directory^ d, 
	Analyzer^ a, 
	IndexDeletionPolicy^ deletionPolicy, 
	IndexWriter..::..MaxFieldLength^ mfl
)

Parameters

d
Type: Lucene.Net.Store..::..Directory
the index directory
a
Type: Lucene.Net.Analysis..::..Analyzer
the analyzer to use
deletionPolicy
Type: Lucene.Net.Index..::..IndexDeletionPolicy
see above
mfl
Type: Lucene.Net.Index..::..IndexWriter..::..MaxFieldLength
whether or not to limit field lengths

See Also