Expert: constructs an IndexWriter with a custom {@link IndexDeletionPolicy}, for the index in
CopyC#
d
. Text will be analyzed with
CopyC#
a
. If
CopyC#
create
is true, then a new, empty index will be created in
CopyC#
d
, replacing the index already there, if any.
has this index open (
CopyC#
write.lock
could not be obtained)
if it does not exist and
CopyC#
create
is
CopyC#
false
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#
[ObsoleteAttribute("This constructor will be removed in the 3.0 release. Use IndexWriter(Directory,Analyzer,boolean,IndexDeletionPolicy,MaxFieldLength) instead, and call Commit() when needed.")]
public IndexWriter(
	Directory d,
	bool autoCommit,
	Analyzer a,
	bool create,
	IndexDeletionPolicy deletionPolicy
)
Visual Basic
<ObsoleteAttribute("This constructor will be removed in the 3.0 release. Use IndexWriter(Directory,Analyzer,boolean,IndexDeletionPolicy,MaxFieldLength) instead, and call Commit() when needed.")> _
Public Sub New ( _
	d As Directory, _
	autoCommit As Boolean, _
	a As Analyzer, _
	create As Boolean, _
	deletionPolicy As IndexDeletionPolicy _
)
Visual C++
[ObsoleteAttribute(L"This constructor will be removed in the 3.0 release. Use IndexWriter(Directory,Analyzer,boolean,IndexDeletionPolicy,MaxFieldLength) instead, and call Commit() when needed.")]
public:
IndexWriter(
	Directory^ d, 
	bool autoCommit, 
	Analyzer^ a, 
	bool create, 
	IndexDeletionPolicy^ deletionPolicy
)

Parameters

d
Type: Lucene.Net.Store..::..Directory
the index directory
autoCommit
Type: System..::..Boolean
see above
a
Type: Lucene.Net.Analysis..::..Analyzer
the analyzer to use
create
Type: System..::..Boolean
CopyC#
true
to create the index or overwrite the existing one;
CopyC#
false
to append to the existing index
deletionPolicy
Type: Lucene.Net.Index..::..IndexDeletionPolicy
see above

See Also