The IndexReader type exposes the following members.

Constructors

  NameDescription
Protected methodIndexReader()()()()
Initializes a new instance of the IndexReader class
Protected methodIndexReader(Directory) Obsolete.
Legacy Constructor for backwards compatibility.

This Constructor should not be used, it exists for backwards compatibility only to support legacy subclasses that did not "own" a specific directory, but needed to specify something to be returned by the directory() method. Future subclasses should delegate to the no arg constructor and implement the directory() method as appropriate.

Methods

  NameDescription
Protected methodAcquireWriteLock
Does nothing by default. Subclasses that require a write lock for index modifications must implement this method.
Public methodClone()()()()
Efficiently clones the IndexReader (sharing most internal state).

On cloning a reader with pending changes (deletions, norms), the original reader transfers its write lock to the cloned reader. This means only the cloned reader may make further changes to the index, and commit the changes to the index on close, but the old reader still reflects all changes made up until it was cloned.

Like {@link #Reopen()}, it's safe to make changes to either the original or the cloned reader: all shared mutable state obeys "copy on write" semantics to ensure the changes are not seen by other readers.

Public methodClone(Boolean)
Clones the IndexReader and optionally changes readOnly. A readOnly reader cannot open a writeable reader.
Public methodClose
Closes files associated with this index. Also saves any new deletions to disk. No other methods should be called after this has been called.
Public methodCommit()()()()
Commit changes resulting from delete, undeleteAll, or setNorm operations If an exception is hit, then either no changes or all changes will have been committed to the index (transactional semantics).
Public methodCommit(IDictionary<(Of <<'(String, String>)>>))
Commit changes resulting from delete, undeleteAll, or setNorm operations If an exception is hit, then either no changes or all changes will have been committed to the index (transactional semantics).
Public methodDecRef
Expert: decreases the refCount of this IndexReader instance. If the refCount drops to 0, then pending changes (if any) are committed to the index and this reader is closed.
Public methodDeleteDocument
Deletes the document numbered
CopyC#
docNum
. Once a document is deleted it will not appear in TermDocs or TermPostitions enumerations. Attempts to read its field with the {@link #document} method will result in an error. The presence of this document may still be reflected in the {@link #docFreq} statistic, though this will be corrected eventually as the index is further modified.
Public methodDeleteDocuments
Deletes all documents that have a given
CopyC#
term
indexed. This is useful if one uses a document field to hold a unique ID string for the document. Then to delete such a document, one merely constructs a term with the appropriate field and the unique ID string as its text and passes it to this method. See {@link #DeleteDocument(int)} for information about when this deletion will become effective.
Public methodDirectory
Returns the directory associated with this index. The Default implementation returns the directory specified by subclasses when delegating to the IndexReader(Directory) constructor, or throws an UnsupportedOperationException if one was not specified.
Public methodDispose
.NET
Public methodDocFreq
Returns the number of documents containing the term
CopyC#
t
.
Protected methodDoClose
Implements close.
Protected methodDoCommit()()()() Obsolete.
Implements commit.
Protected methodDoCommit(IDictionary<(Of <<'(String, String>)>>))
Implements commit. NOTE: subclasses should override this. In 3.0 this will become an abstract method.
Public methodDocument(Int32)
Returns the stored fields of the
CopyC#
n
th
CopyC#
Document
in this index.

NOTE: for performance reasons, this method does not check if the requested document is deleted, and therefore asking for a deleted document may yield unspecified results. Usually this is not required, however you can call {@link #IsDeleted(int)} with the requested document ID to verify the document is not deleted.

Public methodDocument(Int32, FieldSelector)
Get the {@link Lucene.Net.Documents.Document} at the
CopyC#
n
th position. The {@link FieldSelector} may be used to determine what {@link Lucene.Net.Documents.Field}s to load and how they should be loaded. NOTE: If this Reader (more specifically, the underlying
CopyC#
FieldsReader
) is closed before the lazy {@link Lucene.Net.Documents.Field} is loaded an exception may be thrown. If you want the value of a lazy {@link Lucene.Net.Documents.Field} to be available after closing you must explicitly load it or fetch the Document again with a new loader.

NOTE: for performance reasons, this method does not check if the requested document is deleted, and therefore asking for a deleted document may yield unspecified results. Usually this is not required, however you can call {@link #IsDeleted(int)} with the requested document ID to verify the document is not deleted.

Protected methodDoDelete
Implements deletion of the document numbered
CopyC#
docNum
. Applications should call {@link #DeleteDocument(int)} or {@link #DeleteDocuments(Term)}.
Protected methodDoSetNorm
Implements setNorm in subclass.
Protected methodDoUndeleteAll
Implements actual undeleteAll() in subclass.
Protected methodEnsureOpen
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFlush()()()()
Public methodFlush(IDictionary<(Of <<'(String, String>)>>))
Public methodGetCommitUserData()()()()
Retrieve the String userData optionally passed to IndexWriter#commit. This will return null if {@link IndexWriter#Commit(Map)} has never been called for this index.
Public methodStatic memberGetCommitUserData(Directory)
Reads commitUserData, previously passed to {@link IndexWriter#Commit(Map)}, from current index segments file. This will return null if {@link IndexWriter#Commit(Map)} has never been called for this index.
Public methodStatic memberGetCurrentVersion(FileInfo) Obsolete.
Reads version number from segments files. The version number is initialized with a timestamp and then increased by one for each change of the index.
Public methodStatic memberGetCurrentVersion(String) Obsolete.
Reads version number from segments files. The version number is initialized with a timestamp and then increased by one for each change of the index.
Public methodStatic memberGetCurrentVersion(Directory)
Reads version number from segments files. The version number is initialized with a timestamp and then increased by one for each change of the index.
Public methodGetDeletesCacheKey
Public methodGetDisableFakeNorms Obsolete.
Expert: Return the state of the flag that disables fakes norms in favor of representing the absence of field norms with null.
Public methodGetFieldCacheKey Obsolete.
Expert
Public methodGetFieldNames
Get a list of unique field names that exist in this index and have the specified field option information.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetIndexCommit
Expert: return the IndexCommit that this reader has opened. This method is only implemented by those readers that correspond to a Directory with its own segments_N file.

WARNING: this API is new and experimental and may suddenly change.

Public methodGetRefCount
Expert: returns the current refCount for this reader
Public methodGetSequentialSubReaders
Expert: returns the sequential sub readers that this reader is logically composed of. For example, IndexSearcher uses this API to drive searching by one sub reader at a time. If this reader is not composed of sequential child readers, it should return null. If this method returns an empty array, that means this reader is a null reader (for example a MultiReader that has no sub readers).

NOTE: You should not try using sub-readers returned by this method to make any changes (setNorm, deleteDocument, etc.). While this might succeed for one composite reader (like MultiReader), it will most likely lead to index corruption for other readers (like DirectoryReader obtained through {@link #open}. Use the parent reader directly.

Public methodGetTermFreqVector(Int32, TermVectorMapper)
Map all the term vectors for all fields in a Document
Public methodGetTermFreqVector(Int32, String)
Return a term frequency vector for the specified document and field. The returned vector contains terms and frequencies for the terms in the specified field of this document, if the field had the storeTermVector flag set. If termvectors had been stored with positions or offsets, a {@link TermPositionVector} is returned.
Public methodGetTermFreqVector(Int32, String, TermVectorMapper)
Load the Term Vector into a user-defined data structure instead of relying on the parallel arrays of the {@link TermFreqVector}.
Public methodGetTermFreqVectors
Return an array of term frequency vectors for the specified document. The array contains a vector for each vectorized field in the document. Each vector contains terms and frequencies for all terms in a given vectorized field. If no such fields existed, the method returns null. The term vectors that are returned may either be of type {@link TermFreqVector} or of type {@link TermPositionVector} if positions or offsets have been stored.
Public methodGetTermInfosIndexDivisor

For IndexReader implementations that use TermInfosReader to read terms, this returns the current indexDivisor as specified when the reader was opened.

Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetUniqueTermCount
Returns the number of unique terms (across all fields) in this reader. This method returns long, even though internally Lucene cannot handle more than 2^31 unique terms, for a possible future when this limitation is removed.
Public methodGetVersion
Version number when this IndexReader was opened. Not implemented in the IndexReader base class.

If this reader is based on a Directory (ie, was created by calling {@link #Open}, or {@link #Reopen} on a reader based on a Directory), then this method returns the version recorded in the commit that the reader opened. This version is advanced every time {@link IndexWriter#Commit} is called.

If instead this reader is a near real-time reader (ie, obtained by a call to {@link IndexWriter#GetReader}, or by calling {@link #Reopen} on a near real-time reader), then this method returns the version of the last commit done by the writer. Note that even as further changes are made with the writer, the version will not changed until a commit is completed. Thus, you should not rely on this method to determine when a near real-time reader should be opened. Use {@link #IsCurrent} instead.

Public methodHasDeletions
Returns true if any documents have been deleted
Public methodHasNorms
Returns true if there are norms stored for this field.
Public methodIncRef
Expert: increments the refCount of this IndexReader instance. RefCounts are used to determine when a reader can be closed safely, i.e. as soon as there are no more references. Be sure to always call a corresponding {@link #decRef}, in a finally clause; otherwise the reader may never be closed. Note that {@link #close} simply calls decRef(), which means that the IndexReader will not really be closed until {@link #decRef} has been called for all outstanding references.
Public methodStatic memberIndexExists(FileInfo) Obsolete.
Returns
CopyC#
true
if an index exists at the specified directory. If the directory does not exist or if there is no index in it.
Public methodStatic memberIndexExists(String) Obsolete.
Returns
CopyC#
true
if an index exists at the specified directory. If the directory does not exist or if there is no index in it.
CopyC#
false
is returned.
Public methodStatic memberIndexExists(Directory)
Returns
CopyC#
true
if an index exists at the specified directory. If the directory does not exist or if there is no index in it.
Public methodIsCurrent
Check whether any new changes have occurred to the index since this reader was opened.

If this reader is based on a Directory (ie, was created by calling {@link #open}, or {@link #reopen} on a reader based on a Directory), then this method checks if any further commits (see {@link IndexWriter#commit} have occurred in that directory).

If instead this reader is a near real-time reader (ie, obtained by a call to {@link IndexWriter#getReader}, or by calling {@link #reopen} on a near real-time reader), then this method checks if either a new commmit has occurred, or any new uncommitted changes have taken place via the writer. Note that even if the writer has only performed merging, this method will still return false.

In any event, if this returns false, you should call {@link #reopen} to get a new reader that sees the changes.

Public methodIsDeleted
Returns true if document n has been deleted
Public methodStatic memberIsLocked(String) Obsolete.
Returns
CopyC#
true
iff the index in the named directory is currently locked.
Public methodStatic memberIsLocked(Directory) Obsolete.
Returns
CopyC#
true
iff the index in the named directory is currently locked.
Public methodIsOptimized
Checks is the index is optimized (if it has a single segment and no deletions). Not implemented in the IndexReader base class.
Public methodStatic memberLastModified(FileInfo) Obsolete.
Returns the time the index in the named directory was last modified. Do not use this to check whether the reader is still up-to-date, use {@link #IsCurrent()} instead.
Public methodStatic memberLastModified(String) Obsolete.
Returns the time the index in the named directory was last modified. Do not use this to check whether the reader is still up-to-date, use {@link #IsCurrent()} instead.
Public methodStatic memberLastModified(Directory)
Returns the time the index in the named directory was last modified. Do not use this to check whether the reader is still up-to-date, use {@link #IsCurrent()} instead.
Public methodStatic memberListCommits
Returns all commit points that exist in the Directory. Normally, because the default is {@link KeepOnlyLastCommitDeletionPolicy}, there would be only one commit point. But if you're using a custom {@link IndexDeletionPolicy} then there could be many commits. Once you have a given commit, you can open a reader on it by calling {@link IndexReader#Open(IndexCommit)} There must be at least one commit in the Directory, else this method throws {@link java.io.IOException}. Note that if a commit is in progress while this method is running, that commit may or may not be returned array.
Public methodStatic memberMain
Prints the filename and size of each file within a given compound file. Add the -extract flag to extract files to the current working directory. In order to make the extracted version of the index work, you have to copy the segments file from the compound index into the directory where the extracted files are stored.
Public methodMaxDoc
Returns one greater than the largest possible document number. This may be used to, e.g., determine how big to allocate an array which will have an element for every document number in an index.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodNorms(String)
Returns the byte-encoded normalization factor for the named field of every document. This is used by the search code to score documents.
Public methodNorms(String, array<Byte>[]()[][], Int32)
Reads the byte-encoded normalization factor for the named field of every document. This is used by the search code to score documents.
Public methodNumDeletedDocs
Returns the number of deleted documents.
Public methodNumDocs
Returns the number of documents in this index.
Public methodStatic memberOpen(FileInfo) Obsolete.
Returns a read/write IndexReader reading the index in an FSDirectory in the named path.
Public methodStatic memberOpen(String) Obsolete.
Returns a read/write IndexReader reading the index in an FSDirectory in the named path.
Public methodStatic memberOpen(Directory) Obsolete.
Returns a read/write IndexReader reading the index in the given Directory.
Public methodStatic memberOpen(IndexCommit) Obsolete.
Expert: returns a read/write IndexReader reading the index in the given {@link IndexCommit}.
Public methodStatic memberOpen(FileInfo, Boolean) Obsolete.
Returns an IndexReader reading the index in an FSDirectory in the named path. 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.
Public methodStatic memberOpen(String, Boolean) Obsolete.
Returns an IndexReader reading the index in an FSDirectory in the named path. 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.
Public methodStatic memberOpen(Directory, IndexDeletionPolicy) Obsolete.
Expert: returns a read/write IndexReader reading the index in the given Directory, with a custom {@link IndexDeletionPolicy}.
Public methodStatic memberOpen(Directory, Boolean)
Returns an IndexReader reading the index in the given Directory. 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.
Public methodStatic memberOpen(IndexCommit, IndexDeletionPolicy) Obsolete.
Expert: returns a read/write IndexReader reading the index in the given Directory, using a specific commit and with a custom {@link IndexDeletionPolicy}.
Public methodStatic memberOpen(IndexCommit, Boolean)
Expert: returns an IndexReader reading the index in the given {@link IndexCommit}. 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.
Public methodStatic memberOpen(Directory, IndexDeletionPolicy, Boolean)
Expert: returns an IndexReader reading the index in the given Directory, 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.
Public methodStatic memberOpen(IndexCommit, IndexDeletionPolicy, Boolean)
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.
Public methodStatic memberOpen(Directory, IndexDeletionPolicy, Boolean, Int32)
Expert: returns an IndexReader reading the index in the given Directory, 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.
Public methodStatic memberOpen(IndexCommit, IndexDeletionPolicy, Boolean, Int32)
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.
Public methodReopen()()()()
Refreshes an IndexReader if the index has changed since this instance was (re)opened.

Opening an IndexReader is an expensive operation. This method can be used to refresh an existing IndexReader to reduce these costs. This method tries to only load segments that have changed or were created after the IndexReader was (re)opened.

If the index has not changed since this instance was (re)opened, then this call is a NOOP and returns this instance. Otherwise, a new instance is returned. The old instance is not closed and remains usable.

If the reader is reopened, even though they share resources internally, it's safe to make changes (deletions, norms) with the new reader. All shared mutable state obeys "copy on write" semantics to ensure the changes are not seen by other readers.

You can determine whether a reader was actually reopened by comparing the old instance with the instance returned by this method:

            IndexReader reader = ... 
            ...
            IndexReader newReader = r.reopen();
            if (newReader != reader) {
            ...     // reader was reopened
            reader.close(); 
            }
            reader = newReader;
            ...
            
Be sure to synchronize that code so that other threads, if present, can never use reader after it has been closed and before it's switched to newReader.

NOTE: If this reader is a near real-time reader (obtained from {@link IndexWriter#GetReader()}, reopen() will simply call writer.getReader() again for you, though this may change in the future.

Public methodReopen(Boolean)
Just like {@link #Reopen()}, except you can change the readOnly of the original reader. If the index is unchanged but readOnly is different then a new reader will be returned.
Public methodReopen(IndexCommit)
Expert: reopen this reader on a specific commit point. This always returns a readOnly reader. If the specified commit point matches what this reader is already on, and this reader is already readOnly, then this same instance is returned; if it is not already readOnly, a readOnly clone is returned.
Public methodSetDisableFakeNorms Obsolete.
Expert: Set the state of the flag that disables fakes norms in favor of representing the absence of field norms with null.
Public methodSetNorm(Int32, String, Byte)
Expert: Resets the normalization factor for the named field of the named document. The norm represents the product of the field's {@link Lucene.Net.Documents.Fieldable#SetBoost(float) boost} and its {@link Similarity#LengthNorm(String, int) length normalization}. Thus, to preserve the length normalization values when resetting this, one should base the new value upon the old. NOTE: If this field does not store norms, then this method call will silently do nothing.
Public methodSetNorm(Int32, String, Single)
Expert: Resets the normalization factor for the named field of the named document.
Public methodSetTermInfosIndexDivisor Obsolete.

For IndexReader implementations that use TermInfosReader to read terms, this sets the indexDivisor to subsample the number of indexed terms loaded into memory. This has the same effect as {@link IndexWriter#setTermIndexInterval} except that setting must be done at indexing time while this setting can be set per reader. When set to N, then one in every N*termIndexInterval terms in the index is loaded into memory. By setting this to a value > 1 you can reduce memory usage, at the expense of higher latency when loading a TermInfo. The default value is 1.

NOTE: you must call this before the term index is loaded. If the index is already loaded, an IllegalStateException is thrown.

Public methodTermDocs()()()()
Returns an unpositioned {@link TermDocs} enumerator.
Public methodTermDocs(Term)
Returns an enumeration of all the documents which contain
CopyC#
term
. For each document, the document number, the frequency of the term in that document is also provided, for use in search scoring. If term is null, then all non-deleted docs are returned with freq=1. Thus, this method implements the mapping:

    Term    =>    <docNum, freq>*

The enumeration is ordered by document number. Each document number is greater than all that precede it in the enumeration.

Public methodTermPositions()()()()
Returns an unpositioned {@link TermPositions} enumerator.
Public methodTermPositions(Term)
Returns an enumeration of all the documents which contain
CopyC#
term
. For each document, in addition to the document number and frequency of the term in that document, a list of all of the ordinal positions of the term in the document is available. Thus, this method implements the mapping:

    Term    =>    <docNum, freq, <pos1, pos2, ... posfreq-1> >*

This positional information facilitates phrase and proximity searching.

The enumeration is ordered by document number. Each document number is greater than all that precede it in the enumeration.

Public methodTerms()()()()
Returns an enumeration of all the terms in the index. The enumeration is ordered by Term.compareTo(). Each term is greater than all that precede it in the enumeration. Note that after calling terms(), {@link TermEnum#Next()} must be called on the resulting enumeration before calling other methods such as {@link TermEnum#Term()}.
Public methodTerms(Term)
Returns an enumeration of all terms starting at a given term. If the given term does not exist, the enumeration is positioned at the first term greater than the supplied term. The enumeration is ordered by Term.compareTo(). Each term is greater than all that precede it in the enumeration.
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Public methodUndeleteAll
Undeletes all documents currently marked as deleted in this index.
Public methodStatic memberUnlock Obsolete.
Forcibly unlocks the index in the named directory.

Caution: this should only be used by failure recovery code, when it is known that no other process nor thread is in fact currently accessing this index.

Fields

  NameDescription
Protected fieldhasChanges

Properties

  NameDescription
Public propertyhasChanges_ForNUnit

See Also