Expert: returns an IndexReader reading the index in
the given Directory, using a specific commit and with
a custom {@link IndexDeletionPolicy}. You should pass
readOnly=true, since it gives much better concurrent
performance, unless you intend to do write operations
(delete documents or change norms) with the reader.
Namespace: Lucene.Net.IndexAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public static IndexReader Open( IndexCommit commit, IndexDeletionPolicy deletionPolicy, bool readOnly ) |
Visual Basic |
---|
Public Shared Function Open ( _ commit As IndexCommit, _ deletionPolicy As IndexDeletionPolicy, _ readOnly As Boolean _ ) As IndexReader |
Visual C++ |
---|
public: static IndexReader^ Open( IndexCommit^ commit, IndexDeletionPolicy^ deletionPolicy, bool readOnly ) |
Parameters
- commit
- Type: Lucene.Net.Index..::..IndexCommit
the specific {@link IndexCommit} to open; see {@link IndexReader#listCommits} to list all commits in a directory
- deletionPolicy
- Type: Lucene.Net.Index..::..IndexDeletionPolicy
a custom deletion policy (only used if you use this reader to perform deletes or to set norms); see {@link IndexWriter} for details.
- readOnly
- Type: System..::..Boolean
true if no changes (deletions, norms) will be made with this IndexReader
Return Value
[Missing <returns> documentation for "M:Lucene.Net.Index.IndexReader.Open(Lucene.Net.Index.IndexCommit,Lucene.Net.Index.IndexDeletionPolicy,System.Boolean)"]