Class IndexWriter
An Index
Inheritance
Inherited Members
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
public class IndexWriter : IDisposable, ITwoPhaseCommit
Remarks
The Open
In either case, documents are added with AddDocument(IEnumerable<IIndexableField>)
and removed with Delete
These changes are buffered in memory and periodically
flushed to the Directory (during the above method
calls). A flush is triggered when there are enough added documents
since the last flush. Flushing is triggered either by RAM usage of the
documents (see RAMBuffer
Opening an Index
Expert: Index
Expert:
Index
NOTE: if you hit an
System.
NOTE:
Index
NOTE: If you call
System.
Constructors
| Improve this Doc View SourceIndexWriter(Directory, IndexWriterConfig)
Constructs a new Indexconf
.
If you want to make "live" changes to this writer instance, use
Config.
NOTE: after ths writer is created, the given configuration instance cannot be passed to another writer. If you intend to do so, you should Clone() it beforehand.
Declaration
public IndexWriter(Directory d, IndexWriterConfig conf)
Parameters
Type | Name | Description |
---|---|---|
Directory | d | the index directory. The index is either created or appended
according Open |
Index |
conf | the configuration settings according to which Index |
Exceptions
Type | Condition |
---|---|
System. |
if the directory cannot be read/written to, or if it does not
exist and Open |
Fields
| Improve this Doc View SourceMAX_TERM_LENGTH
Absolute hard maximum length for a term, in bytes once
encoded as UTF8. If a term arrives from the analyzer
longer than this length, an
System.
Declaration
public static readonly int MAX_TERM_LENGTH
Field Value
Type | Description |
---|---|
System. |
SOURCE
Key for the source of a segment in the Diagnostics.
Declaration
public static readonly string SOURCE
Field Value
Type | Description |
---|---|
System. |
SOURCE_ADDINDEXES_READERS
Source of a segment which results from a call to Add
Declaration
public static readonly string SOURCE_ADDINDEXES_READERS
Field Value
Type | Description |
---|---|
System. |
SOURCE_FLUSH
Source of a segment which results from a flush.
Declaration
public static readonly string SOURCE_FLUSH
Field Value
Type | Description |
---|---|
System. |
SOURCE_MERGE
Source of a segment which results from a merge of other segments.
Declaration
public static readonly string SOURCE_MERGE
Field Value
Type | Description |
---|---|
System. |
WRITE_LOCK_NAME
Name of the write lock in the index.
Declaration
public static readonly string WRITE_LOCK_NAME
Field Value
Type | Description |
---|---|
System. |
Properties
| Improve this Doc View SourceAnalyzer
Gets the analyzer used by this index.
Declaration
public virtual Analyzer Analyzer { get; }
Property Value
Type | Description |
---|---|
Analyzer |
CommitData
Returns the commit user data map that was last committed, or the one that was set on SetCommitData(IDictionary<String, String>).
Declaration
public IDictionary<string, string> CommitData { get; }
Property Value
Type | Description |
---|---|
System. |
Config
Returns a Live
Declaration
public virtual LiveIndexWriterConfig Config { get; }
Property Value
Type | Description |
---|---|
Live |
Directory
Gets the Directory used by this index.
Declaration
public virtual Directory Directory { get; }
Property Value
Type | Description |
---|---|
Directory |
IsClosed
Declaration
public virtual bool IsClosed { get; }
Property Value
Type | Description |
---|---|
System. |
KeepFullyDeletedSegments
Only for testing.
Declaration
public virtual bool KeepFullyDeletedSegments { get; set; }
Property Value
Type | Description |
---|---|
System. |
MaxDoc
Gets total number of docs in this index, including docs not yet flushed (still in the RAM buffer), not counting deletions.
Declaration
public virtual int MaxDoc { get; }
Property Value
Type | Description |
---|---|
System. |
See Also
| Improve this Doc View SourceMergingSegments
Expert: to be used by a Merge
Do not alter the returned collection!
Declaration
public virtual ICollection<SegmentCommitInfo> MergingSegments { get; }
Property Value
Type | Description |
---|---|
System. |
NumDocs
Gets total number of docs in this index, including docs not yet flushed (still in the RAM buffer), and including deletions. NOTE: buffered deletions are not counted. If you really need these to be counted you should call Commit() first.
Declaration
public virtual int NumDocs { get; }
Property Value
Type | Description |
---|---|
System. |
See Also
Methods
| Improve this Doc View SourceAddDocument(IEnumerable<IIndexableField>)
Adds a document to this index.
Note that if an System.
This method periodically flushes pending documents
to the Directory (see Index
Merges temporarily consume space in the
directory. The amount of space required is up to 1X the
size of all segments being merged, when no
readers/searchers are open against the index, and up to
2X the size of all segments being merged when
readers/searchers are open against the index (see
Force
Note that each term in the document can be no longer
than MAX_TERM_LENGTH in bytes, otherwise an
System.
Note that it's possible to create an invalid Unicode string in java if a UTF16 surrogate pair is malformed. In this case, the invalid characters are silently replaced with the Unicode replacement character U+FFFD.
NOTE: if this method hits an System.
Declaration
public virtual void AddDocument(IEnumerable<IIndexableField> doc)
Parameters
Type | Name | Description |
---|---|---|
System. |
doc |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
AddDocument(IEnumerable<IIndexableField>, Analyzer)
Adds a document to this index, using the provided analyzer
instead of the
value of Analyzer.
See AddDocument(IEnumerable<IIndexableField>) for details on
index and Index
NOTE: if this method hits an System.
Declaration
public virtual void AddDocument(IEnumerable<IIndexableField> doc, Analyzer analyzer)
Parameters
Type | Name | Description |
---|---|---|
System. |
doc | |
Analyzer | analyzer |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
AddDocuments(IEnumerable<IEnumerable<IIndexableField>>)
Atomically adds a block of documents with sequentially assigned document IDs, such that an external reader will see all or none of the documents.
WARNING: the index does not currently record which documents were added as a block. Today this is fine, because merging will preserve a block. The order of documents within a segment will be preserved, even when child documents within a block are deleted. Most search features (like result grouping and block joining) require you to mark documents; when these documents are deleted these search features will not work as expected. Obviously adding documents to an existing block will require you the reindex the entire block.
However it's possible that in the future Lucene may merge more aggressively re-order documents (for example, perhaps to obtain better index compression), in which case you may need to fully re-index your documents at that time.
See AddDocument(IEnumerable<IIndexableField>) for details on
index and Index
NOTE: tools that do offline splitting of an index (for example, IndexSplitter in Lucene.Net.Misc) or re-sorting of documents (for example, IndexSorter in contrib) are not aware of these atomically added documents and will likely break them up. Use such tools at your own risk!
NOTE: if this method hits an System.
Declaration
public virtual void AddDocuments(IEnumerable<IEnumerable<IIndexableField>> docs)
Parameters
Type | Name | Description |
---|---|---|
System. |
docs |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
AddDocuments(IEnumerable<IEnumerable<IIndexableField>>, Analyzer)
Atomically adds a block of documents, analyzed using the
provided analyzer
, with sequentially assigned document
IDs, such that an external reader will see all or none
of the documents.
Declaration
public virtual void AddDocuments(IEnumerable<IEnumerable<IIndexableField>> docs, Analyzer analyzer)
Parameters
Type | Name | Description |
---|---|---|
System. |
docs | |
Analyzer | analyzer |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
AddIndexes(IndexReader[])
Merges the provided indexes into this index.
The provided Index
See Add
NOTE: if this method hits an System.
NOTE: empty segments are dropped by this method and not added to this index.
NOTE: this method merges all given IndexmergeFactor
or
maxMergeAtOnce
parameter, you should pass that many readers in one
call. Also, if the given readers are DirectorytermIndexInterval=-1
to save RAM, since during merge
the in-memory structure is not used. See
Open(Directory, Int32).
NOTE: if you call Dispose(Boolean) with false
, which
aborts all running merges, then any thread still running this method might
hit a Merge
Declaration
public virtual void AddIndexes(params IndexReader[] readers)
Parameters
Type | Name | Description |
---|---|---|
Index |
readers |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
AddIndexes(Directory[])
Adds all segments from an array of indexes into this index.
This may be used to parallelize batch indexing. A large document collection can be broken into sub-collections. Each sub-collection can be indexed in parallel, on a different thread, process or machine. The complete index can then be created by merging sub-collection indexes with this method.
NOTE: this method acquires the write lock in
each directory, to ensure that no Index
This method is transactional in how System.
Note that this requires temporary free space in the
Directory up to 2X the sum of all input indexes
(including the starting index). If readers/searchers
are open against the starting index, then temporary
free space required will be higher by the size of the
starting index (see Force
NOTE: this method only copies the segments of the incoming indexes and does not merge them. Therefore deleted documents are not removed and the new segments are not merged with the existing ones.
This requires this index not be among those to be added.
NOTE: if this method hits an System.
Declaration
public virtual void AddIndexes(params Directory[] dirs)
Parameters
Type | Name | Description |
---|---|---|
Directory[] | dirs |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
Lock |
if we were unable to acquire the write lock in at least one directory |
Commit()
Commits all pending changes (added & deleted documents, segment merges, added indexes, etc.) to the index, and syncs all referenced index files, such that a reader will see the changes and the index updates will survive an OS or machine crash or power loss. Note that this does not wait for any running background merges to finish. This may be a costly operation, so you should test the cost in your application and do it only when really necessary.
Note that this operation calls Sync(ICollection<String>) on the index files. That call should not return until the file contents & metadata are on stable storage. For FSDirectory, this calls the OS's fsync. But, beware: some hardware devices may in fact cache writes even during fsync, and return before the bits are actually on stable storage, to give the appearance of faster performance. If you have such a device, and it does not have a battery backup (for example) then on power loss it may still lose data. Lucene cannot guarantee consistency on such devices.
NOTE: if this method hits an System.
Declaration
public void Commit()
DeleteAll()
Delete all documents in the index.
This method will drop all buffered documents and will remove all segments from the index. This change will not be visible until a Commit() has been called. This method can be rolled back using Rollback().
NOTE: this method is much faster than using DeleteDocuments(new MatchAllDocsQuery())
.
Yet, this method also has different semantics compared to Delete
NOTE: this method will forcefully abort all merges
in progress. If other threads are running
Force
Declaration
public virtual void DeleteAll()
DeleteDocuments(Term)
Deletes the document(s) containing term
.
NOTE: if this method hits an System.
Declaration
public virtual void DeleteDocuments(Term term)
Parameters
Type | Name | Description |
---|---|---|
Term | term | the term to identify the documents to be deleted |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
DeleteDocuments(Term[])
Deletes the document(s) containing any of the terms. All given deletes are applied and flushed atomically at the same time.
NOTE: if this method hits an System.
Declaration
public virtual void DeleteDocuments(params Term[] terms)
Parameters
Type | Name | Description |
---|---|---|
Term[] | terms | array of terms to identify the documents to be deleted |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
DeleteDocuments(Query)
Deletes the document(s) matching the provided query.
NOTE: if this method hits an System.
Declaration
public virtual void DeleteDocuments(Query query)
Parameters
Type | Name | Description |
---|---|---|
Query | query | the query to identify the documents to be deleted |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
DeleteDocuments(Query[])
Deletes the document(s) matching any of the provided queries. All given deletes are applied and flushed atomically at the same time.
NOTE: if this method hits an System.
Declaration
public virtual void DeleteDocuments(params Query[] queries)
Parameters
Type | Name | Description |
---|---|---|
Query[] | queries | array of queries to identify the documents to be deleted |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
DeleteUnusedFiles()
Expert: remove any index files that are no longer used.
Index
However, Index
In addition, you can call this method to delete
unreferenced index commits. this might be useful if you
are using an Index
Declaration
public virtual void DeleteUnusedFiles()
Dispose()
Commits all changes to an index, waits for pending merges to complete, and closes all associated files.
This is a "slow graceful shutdown" which may take a long time especially if a big merge is pending: If you only want to close resources use Rollback(). If you only want to commit pending changes and close resources see Dispose(Boolean).
Note that this may be a costly operation, so, try to re-use a single writer instead of closing and opening a new one. See Commit() for caveats about write caching done by some IO devices.
If an System.
If you can correct the underlying cause (eg free up
some disk space) then you can call Dispose() again.
Failing that, if you want to force the write lock to be
released (dangerous, because you may then lose buffered
docs in the Index
try
{
writer.Dispose();
}
finally
{
if (IndexWriter.IsLocked(directory))
{
IndexWriter.Unlock(directory);
}
}
after which, you must be certain not to use the writer instance anymore.
NOTE: if this method hits an System.
Declaration
public void Dispose()
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
Dispose(Boolean)
Closes the index with or without waiting for currently
running merges to finish. This is only meaningful when
using a Merge
NOTE: if this method hits an System.
NOTE: it is dangerous to always call
Dispose(false)
, especially when Index
Declaration
public virtual void Dispose(bool waitForMerges)
Parameters
Type | Name | Description |
---|---|---|
System. |
waitForMerges | if |
DoAfterFlush()
A hook for extending classes to execute operations after pending added and deleted documents have been flushed to the Directory but before the change is committed (new segments_N file written).
Declaration
protected virtual void DoAfterFlush()
DoBeforeFlush()
A hook for extending classes to execute operations before pending added and deleted documents are flushed to the Directory.
Declaration
protected virtual void DoBeforeFlush()
EnsureOpen()
Used internally to throw an
System.closed=true
) or is in the process of
disposing (closing=true
).
Calls Ensure
Declaration
protected void EnsureOpen()
Exceptions
Type | Condition |
---|---|
System. |
if this Index |
EnsureOpen(Boolean)
Used internally to throw an System.
Declaration
protected void EnsureOpen(bool failIfDisposing)
Parameters
Type | Name | Description |
---|---|---|
System. |
failIfDisposing | if |
Exceptions
Type | Condition |
---|---|
System. |
if this IndexWriter is closed or in the process of closing |
Flush(Boolean, Boolean)
Flush all in-memory buffered updates (adds and deletes) to the Directory.
Declaration
public void Flush(bool triggerMerge, bool applyAllDeletes)
Parameters
Type | Name | Description |
---|---|---|
System. |
triggerMerge | if |
System. |
applyAllDeletes | whether pending deletes should also |
ForceMerge(Int32)
Forces merge policy to merge segments until there are <=
maxNumSegments
. The actual merges to be
executed are determined by the Merge
This is a horribly costly operation, especially when
you pass a small maxNumSegments
; usually you
should only call this if the index is static (will no
longer be changed).
Note that this requires up to 2X the index size free
space in your Directory (3X if you're using compound
file format). For example, if your index size is 10 MB
then you need up to 20 MB free for this to complete (30
MB if you're using compound file format). Also,
it's best to call Commit() afterwards,
to allow Index
If some but not all readers re-open while merging is underway, this will cause > 2X temporary space to be consumed as those new readers will then hold open the temporary segments at that time. It is best not to re-open readers while merging is running.
The actual temporary usage could be much less than these figures (it depends on many factors).
In general, once this completes, the total size of the index will be less than the size of the starting index. It could be quite a bit smaller (if there were many pending deletes) or just slightly smaller.
If an System.
This call will merge those segments present in
the index when the call started. If other threads are
still adding documents and flushing segments, those
newly created segments will not be merged unless you
call Force
NOTE: if this method hits an System.
NOTE: if you call Dispose(Boolean)
with false
, which aborts all running merges,
then any thread still running this method might hit a
Merge
Declaration
public virtual void ForceMerge(int maxNumSegments)
Parameters
Type | Name | Description |
---|---|---|
System. |
maxNumSegments | maximum number of segments left in the index after merging finishes |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
See Also
| Improve this Doc View SourceForceMerge(Int32, Boolean)
Just like Force
NOTE: if this method hits an System.
Declaration
public virtual void ForceMerge(int maxNumSegments, bool doWait)
Parameters
Type | Name | Description |
---|---|---|
System. |
maxNumSegments | |
System. |
doWait |
ForceMergeDeletes()
Forces merging of all segments that have deleted
documents. The actual merges to be executed are
determined by the Merge
This is often a horribly costly operation; rarely is it warranted.
To see how
many deletions you have pending in your index, call
Num
NOTE: this method first flushes a new segment (if there are indexed documents), and applies all buffered deletes.
NOTE: if this method hits an System.
Declaration
public virtual void ForceMergeDeletes()
ForceMergeDeletes(Boolean)
Just like Force
NOTE: if this method hits an System.
NOTE: if you call Dispose(Boolean)
with false
, which aborts all running merges,
then any thread still running this method might hit a
Merge
Declaration
public virtual void ForceMergeDeletes(bool doWait)
Parameters
Type | Name | Description |
---|---|---|
System. |
doWait |
GetReader(Boolean)
Expert: returns a readonly reader, covering all
committed as well as un-committed changes to the index.
this provides "near real-time" searching, in that
changes made during an Index
Note that this is functionally equivalent to calling Flush() and then opening a new reader. But the turnaround time of this method should be faster since it avoids the potentially costly Commit().
You must close the 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 resulting reader supports
Do
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
set 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 virtual DirectoryReader GetReader(bool applyAllDeletes)
Parameters
Type | Name | Description |
---|---|---|
System. |
applyAllDeletes |
Returns
Type | Description |
---|---|
Directory |
Index |
Exceptions
Type | Condition |
---|---|
System. |
If there is a low-level I/O error |
HasDeletions()
Returns true
if this index has deletions (including
buffered deletions). Note that this will return true
if there are buffered Term/Query deletions, even if it
turns out those buffered deletions don't match any
documents. Also, if a merge kicked off as a result of flushing a
Declaration
public virtual bool HasDeletions()
Returns
Type | Description |
---|---|
System. |
HasPendingMerges()
Expert: returns true if there are merges waiting to be scheduled.
Declaration
public virtual bool HasPendingMerges()
Returns
Type | Description |
---|---|
System. |
HasUncommittedChanges()
Returns true
if there may be changes that have not been
committed. There are cases where this may return true
when there are no actual "real" changes to the index,
for example if you've deleted by Term or Query but
that Term or Query does not match any documents.
Also, if a merge kicked off as a result of flushing a
new segment during Commit(), or a concurrent
merged finished, this method may return true
right
after you had just called Commit().
Declaration
public bool HasUncommittedChanges()
Returns
Type | Description |
---|---|
System. |
IsLocked(Directory)
Returns true
iff the index in the named directory is
currently locked.
Declaration
public static bool IsLocked(Directory directory)
Parameters
Type | Name | Description |
---|---|---|
Directory | directory | the directory to check for a lock |
Returns
Type | Description |
---|---|
System. |
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
MaybeMerge()
Expert: asks the Lucene.
Explicit calls to Maybe
this method will call the Lucene.
NOTE: if this method hits an System.
Declaration
public void MaybeMerge()
Merge(MergePolicy.OneMerge)
Merges the indicated segments, replacing them in the stack with a single segment.
Declaration
public virtual void Merge(MergePolicy.OneMerge merge)
Parameters
Type | Name | Description |
---|---|---|
Merge |
merge |
MergeFinish(MergePolicy.OneMerge)
Does fininishing for a merge, which is fast but holds
the synchronized lock on Index
Declaration
public void MergeFinish(MergePolicy.OneMerge merge)
Parameters
Type | Name | Description |
---|---|---|
Merge |
merge |
NextMerge()
Expert: the Lucene.
Declaration
public virtual MergePolicy.OneMerge NextMerge()
Returns
Type | Description |
---|---|
Merge |
NumDeletedDocs(SegmentCommitInfo)
Obtain the number of deleted docs for a pooled reader. If the reader isn't being pooled, the segmentInfo's delCount is returned.
Declaration
public virtual int NumDeletedDocs(SegmentCommitInfo info)
Parameters
Type | Name | Description |
---|---|---|
Segment |
info |
Returns
Type | Description |
---|---|
System. |
NumRamDocs()
Expert: Return the number of documents currently buffered in RAM.
Declaration
public int NumRamDocs()
Returns
Type | Description |
---|---|
System. |
PrepareCommit()
Expert: prepare for commit. This does the first phase of 2-phase commit. this method does all steps necessary to commit changes since this writer was opened: flushes pending added and deleted docs, syncs the index files, writes most of next segments_N file. After calling this you must call either Commit() to finish the commit, or Rollback() to revert the commit and undo all changes done since the writer was opened.
You can also just call Commit() directly
without Prepare
NOTE: if this method hits an System.
Declaration
public void PrepareCommit()
RamSizeInBytes()
Expert: Return the total size of all index files currently cached in memory. Useful for size management with flushRamDocs()
Declaration
public long RamSizeInBytes()
Returns
Type | Description |
---|---|
System. |
Rollback()
Close the Index
Declaration
public virtual void Rollback()
Exceptions
Type | Condition |
---|---|
System. |
if there is a low-level IO error |
SegString()
Returns a string description of all segments, for debugging.
Declaration
public virtual string SegString()
Returns
Type | Description |
---|---|
System. |
SegString(SegmentCommitInfo)
Returns a string description of the specified segment, for debugging.
Declaration
public virtual string SegString(SegmentCommitInfo info)
Parameters
Type | Name | Description |
---|---|---|
Segment |
info |
Returns
Type | Description |
---|---|
System. |
SegString(IEnumerable<SegmentCommitInfo>)
Returns a string description of the specified segments, for debugging.
Declaration
public virtual string SegString(IEnumerable<SegmentCommitInfo> infos)
Parameters
Type | Name | Description |
---|---|---|
System. |
infos |
Returns
Type | Description |
---|---|
System. |
SetCommitData(IDictionary<String, String>)
Sets the commit user data map. That method is considered a transaction by
Index
NOTE: the dictionary is cloned internally, therefore altering the dictionary's contents after calling this method has no effect.
Declaration
public void SetCommitData(IDictionary<string, string> commitUserData)
Parameters
Type | Name | Description |
---|---|---|
System. |
commitUserData |
TryDeleteDocument(IndexReader, Int32)
Expert: attempts to delete by document ID, as long as
the provided readerIn
is a near-real-time reader (from
Open(IndexreaderIn
is an NRT reader obtained from this
writer, and its segment has not been merged away, then
the delete succeeds and this method returns true
; else, it
returns false
the caller must then separately delete by
Term or Query.
NOTE: this method can only delete documents
visible to the currently open NRT reader. If you need
to delete documents indexed after opening the NRT
reader you must use the other DeleteDocument() methods
(e.g., Delete
Declaration
public virtual bool TryDeleteDocument(IndexReader readerIn, int docID)
Parameters
Type | Name | Description |
---|---|---|
Index |
readerIn | |
System. |
docID |
Returns
Type | Description |
---|---|
System. |
Unlock(Directory)
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.
Declaration
public static void Unlock(Directory directory)
Parameters
Type | Name | Description |
---|---|---|
Directory | directory |
UpdateBinaryDocValue(Term, String, BytesRef)
Updates a document's Binaryfield
to the
given value
. this method can be used to 'unset' a document's
value by passing null
as the new value
. Also, you can only update
fields that already exist in the index, not add new fields through this
method.
NOTE: this method currently replaces the existing value of all affected documents with the new value.
NOTE: if this method hits an System.
Declaration
public virtual void UpdateBinaryDocValue(Term term, string field, BytesRef value)
Parameters
Type | Name | Description |
---|---|---|
Term | term | the term to identify the document(s) to be updated |
System. |
field | field name of the Binary |
Bytes |
value | new value for the field |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
UpdateDocument(Term, IEnumerable<IIndexableField>)
Updates a document by first deleting the document(s)
containing term
and then adding the new
document. The delete and then add are atomic as seen
by a reader on the same index (flush may happen only after
the add).
NOTE: if this method hits an System.
Declaration
public virtual void UpdateDocument(Term term, IEnumerable<IIndexableField> doc)
Parameters
Type | Name | Description |
---|---|---|
Term | term | the term to identify the document(s) to be deleted |
System. |
doc | the document to be added |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
UpdateDocument(Term, IEnumerable<IIndexableField>, Analyzer)
Updates a document by first deleting the document(s)
containing term
and then adding the new
document. The delete and then add are atomic as seen
by a reader on the same index (flush may happen only after
the add).
NOTE: if this method hits an System.
Declaration
public virtual void UpdateDocument(Term term, IEnumerable<IIndexableField> doc, Analyzer analyzer)
Parameters
Type | Name | Description |
---|---|---|
Term | term | the term to identify the document(s) to be deleted |
System. |
doc | the document to be added |
Analyzer | analyzer | the analyzer to use when analyzing the document |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
UpdateDocuments(Term, IEnumerable<IEnumerable<IIndexableField>>)
Atomically deletes documents matching the provided
delTerm
and adds a block of documents with sequentially
assigned document IDs, such that an external reader
will see all or none of the documents.
Declaration
public virtual void UpdateDocuments(Term delTerm, IEnumerable<IEnumerable<IIndexableField>> docs)
Parameters
Type | Name | Description |
---|---|---|
Term | delTerm | |
System. |
docs |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
See Also
| Improve this Doc View SourceUpdateDocuments(Term, IEnumerable<IEnumerable<IIndexableField>>, Analyzer)
Atomically deletes documents matching the provided
delTerm
and adds a block of documents, analyzed using
the provided analyzer
, with sequentially
assigned document IDs, such that an external reader
will see all or none of the documents.
Declaration
public virtual void UpdateDocuments(Term delTerm, IEnumerable<IEnumerable<IIndexableField>> docs, Analyzer analyzer)
Parameters
Type | Name | Description |
---|---|---|
Term | delTerm | |
System. |
docs | |
Analyzer | analyzer |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
See Also
| Improve this Doc View SourceUpdateNumericDocValue(Term, String, Nullable<Int64>)
Updates a document's Numericfield
to the
given value
. This method can be used to 'unset' a document's
value by passing null
as the new value
. Also, you can only update
fields that already exist in the index, not add new fields through this
method.
NOTE: if this method hits an System.
Declaration
public virtual void UpdateNumericDocValue(Term term, string field, long? value)
Parameters
Type | Name | Description |
---|---|---|
Term | term | the term to identify the document(s) to be updated |
System. |
field | field name of the Numeric |
System. |
value | new value for the field |
Exceptions
Type | Condition |
---|---|
Corrupt |
if the index is corrupt |
System. |
if there is a low-level IO error |
WaitForMerges()
Wait for any currently outstanding merges to finish.
It is guaranteed that any merges started prior to calling this method will have completed once this method completes.
Declaration
public virtual void WaitForMerges()