Deletes the document(s) matching any of the provided queries.
All deletes are flushed at the same time.
NOTE: if this method hits an OutOfMemoryError
you should immediately close the writer. See
above for details.
Namespace: Lucene.Net.IndexAssembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1
Syntax
C# |
---|
public virtual void DeleteDocuments(
Query[] queries
) |
Visual Basic |
---|
Public Overridable Sub DeleteDocuments ( _
queries As Query() _
) |
Visual C++ |
---|
public:
virtual void DeleteDocuments(
array<Query^>^ queries
) |
See Also