Class DirectoryReader
Directory
DirectoryOpen()
methods, e.g. Open(Directory).
For efficiency, in this API documents are often referred to via document numbers, non-negative integers which each name a unique document in the index. These document numbers are ephemeral -- they may change as documents are added to and deleted from an index. Clients should thus not rely on a given document having the same number between sessions.
NOTE:
Index
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public abstract class DirectoryReader : BaseCompositeReader<AtomicReader>, IDisposable
Constructors
| Improve this Doc View SourceDirectoryReader(Directory, AtomicReader[])
Expert: Constructs a DirectorysegmentReaders
.
Declaration
protected DirectoryReader(Directory directory, AtomicReader[] segmentReaders)
Parameters
Type | Name | Description |
---|---|---|
Directory | directory | |
Atomic |
segmentReaders | the wrapped atomic index segment readers. This array is
returned by Get |
Fields
| Improve this Doc View SourceDEFAULT_TERMS_INDEX_DIVISOR
Default termInfosIndexDivisor.
Declaration
public static readonly int DEFAULT_TERMS_INDEX_DIVISOR
Field Value
Type | Description |
---|---|
System. |
m_directory
The index directory.
Declaration
protected readonly Directory m_directory
Field Value
Type | Description |
---|---|
Directory |
Properties
| Improve this Doc View SourceDirectory
Returns the directory this index resides in.
Declaration
public Directory Directory { get; }
Property Value
Type | Description |
---|---|
Directory |
IndexCommit
Expert: return the Index
Declaration
public abstract IndexCommit IndexCommit { get; }
Property Value
Type | Description |
---|---|
Index |
Version
Version number when this Index
This method
returns the version recorded in the commit that the
reader opened. This version is advanced every time
a change is made with Index
Declaration
public abstract long Version { get; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceDoOpenIfChanged()
Implement this method to support Opennull
, so
client code is happy. This should be consistent with Istrue
) if reopen is not supported.
Declaration
protected abstract DirectoryReader DoOpenIfChanged()
Returns
Type | Description |
---|---|
Directory |
|
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
DoOpenIfChanged(IndexCommit)
Implement this method to support Open
Declaration
protected abstract DirectoryReader DoOpenIfChanged(IndexCommit commit)
Parameters
Type | Name | Description |
---|---|---|
Index |
commit |
Returns
Type | Description |
---|---|
Directory |
|
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
DoOpenIfChanged(IndexWriter, Boolean)
Implement this method to support Open
Declaration
protected abstract DirectoryReader DoOpenIfChanged(IndexWriter writer, bool applyAllDeletes)
Parameters
Type | Name | Description |
---|---|---|
Index |
writer | |
System. |
applyAllDeletes |
Returns
Type | Description |
---|---|
Directory |
|
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
IndexExists(Directory)
Returns true
if an index likely exists at
the specified directory. Note that if a corrupt index
exists, or if an index in the process of committing
Declaration
public static bool IndexExists(Directory directory)
Parameters
Type | Name | Description |
---|---|---|
Directory | directory | the directory to check for an index |
Returns
Type | Description |
---|---|
System. |
|
IsCurrent()
Check whether any new changes have occurred to the index since this reader was opened.
If this reader was created by calling an overload of Open(Directory), then this method checks if any further commits (see Commit()) have occurred in the directory.
If instead this reader is a near real-time reader
(ie, obtained by a call to
Open(Indexfalse
.
In any event, if this returns false
, you should call
an overload of Open
Declaration
public abstract bool IsCurrent()
Returns
Type | Description |
---|---|
System. |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
ListCommits(Directory)
Returns all commit points that exist in the Directory.
Normally, because the default is
Keep
Declaration
public static IList<IndexCommit> ListCommits(Directory dir)
Parameters
Type | Name | Description |
---|---|---|
Directory | dir |
Returns
Type | Description |
---|---|
System. |
a sorted list of Index |
Open(IndexCommit)
Expert: returns an Index
Declaration
public static DirectoryReader Open(IndexCommit commit)
Parameters
Type | Name | Description |
---|---|---|
Index |
commit | the commit point to open |
Returns
Type | Description |
---|---|
Directory |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
Open(IndexCommit, Int32)
Expert: returns an IndextermInfosIndexDivisor
.
Declaration
public static DirectoryReader Open(IndexCommit commit, int termInfosIndexDivisor)
Parameters
Type | Name | Description |
---|---|---|
Index |
commit | the commit point to open |
System. |
termInfosIndexDivisor | Subsamples which indexed
terms are loaded into RAM. this has the same effect as setting
Term |
Returns
Type | Description |
---|---|
Directory |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
Open(IndexWriter, Boolean)
Open a near real time Index
Declaration
public static DirectoryReader Open(IndexWriter writer, bool applyAllDeletes)
Parameters
Type | Name | Description |
---|---|---|
Index |
writer | The Index |
System. |
applyAllDeletes | If |
Returns
Type | Description |
---|---|
Directory |
The new Index |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
See Also
| Improve this Doc View SourceOpen(Directory)
Returns a Index
Declaration
public static DirectoryReader Open(Directory directory)
Parameters
Type | Name | Description |
---|---|---|
Directory | directory | the index directory |
Returns
Type | Description |
---|---|
Directory |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
Open(Directory, Int32)
Expert: Returns a Index
Declaration
public static DirectoryReader Open(Directory directory, int termInfosIndexDivisor)
Parameters
Type | Name | Description |
---|---|---|
Directory | directory | the index directory |
System. |
termInfosIndexDivisor | Subsamples which indexed
terms are loaded into RAM. this has the same effect as setting
Term |
Returns
Type | Description |
---|---|
Directory |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
OpenIfChanged(DirectoryReader)
If the index has changed since the provided reader was
opened, open and return a new reader; else, return
null
. The new reader, if not null
, will be the same
type of reader as the previous one, ie a near-real-time (NRT) reader
will open a new NRT reader, a Multi
This method is typically far less costly than opening a
fully new Directory
The provided reader is not disposed (you are responsible
for doing so); if a new reader is returned you also
must eventually dispose it. Be sure to never dispose a
reader while other threads are still using it; see
Searcher
Declaration
public static DirectoryReader OpenIfChanged(DirectoryReader oldReader)
Parameters
Type | Name | Description |
---|---|---|
Directory |
oldReader |
Returns
Type | Description |
---|---|
Directory |
|
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
OpenIfChanged(DirectoryReader, IndexCommit)
If the Indexnull
.
Declaration
public static DirectoryReader OpenIfChanged(DirectoryReader oldReader, IndexCommit commit)
Parameters
Type | Name | Description |
---|---|---|
Directory |
oldReader | |
Index |
commit |
Returns
Type | Description |
---|---|
Directory |
See Also
| Improve this Doc View SourceOpenIfChanged(DirectoryReader, IndexWriter, Boolean)
Expert: If there changes (committed or not) in the
Indexnull
(though, the
current implementation never returns null
).
This provides "near real-time" searching, in that
changes made during an Index
It's near real-time because there is no hard
guarantee on how quickly you can get a new reader after
making changes with Index
The very first time this method is called, this writer instance will make every effort to pool the readers that it opens for doing merges, applying deletes, etc. This means additional resources (RAM, file descriptors, CPU time) will be consumed.
For lower latency on reopening a reader, you should
call Merged
If an AddIndexes* call is running in another thread, then this reader will only search those segments from the foreign index that have been successfully copied over, so far.
NOTE: Once the writer is disposed, any
outstanding readers may continue to be used. However,
if you attempt to reopen any of those readers, you'll
hit an System.
Declaration
public static DirectoryReader OpenIfChanged(DirectoryReader oldReader, IndexWriter writer, bool applyAllDeletes)
Parameters
Type | Name | Description |
---|---|---|
Directory |
oldReader | |
Index |
writer | The Index |
System. |
applyAllDeletes | If |
Returns
Type | Description |
---|---|
Directory |
Directory |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |