Overload List

  NameDescription
Public methodDeleteDocuments(Query)
Deletes the document(s) matching the provided query.

NOTE: if this method hits an OutOfMemoryError you should immediately close the writer. See above for details.

Public methodDeleteDocuments(array<Query>[]()[][])
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.

Public methodDeleteDocuments(Term)
Deletes the document(s) containing
CopyC#
term
.

NOTE: if this method hits an OutOfMemoryError you should immediately close the writer. See above for details.

Public methodDeleteDocuments(array<Term>[]()[][])
Deletes the document(s) containing any of the terms. 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.

See Also