# Auto-generated file -- DO NOT EDIT!!!!! =head1 NAME KinoSearch::Index::DeletionsWriter - Abstract base class for marking documents as deleted. =head1 SYNOPSIS my $polyreader = $del_writer->get_polyreader; my $seg_readers = $polyreader->seg_readers; for my $seg_reader (@$seg_readers) { my $count = $del_writer->seg_del_count( $seg_reader->get_seg_name ); ... } =head1 DESCRIPTION Subclasses of DeletionsWriter provide a low-level mechanism for declaring a document deleted from an index. Because files in an index are never modified, and because it is not practical to delete entire segments, a DeletionsWriter does not actually remove documents from the index. Instead, it communicates to a search-time companion DeletionsReader which documents are deleted in such a way that it can create a Matcher iterator. Documents are truly deleted only when the segments which contain them are merged into new ones. =head1 ABSTRACT METHODS =head2 Delete_By_Term( I<[labeled params]> ) Delete all documents in the index that index the supplied term. =over =item * B - The name of an indexed field. (If it is not spec'd as C<< indexed >>, an error will occur.) =item * B - The term which identifies docs to be marked as deleted. If C<< field >> is associated with an Analyzer, C<< term >> will be processed automatically (so don't pre-process it yourself). =back =head2 Delete_By_Query(query) Delete all documents in the index that match C<< query >>. =over =item * B - A L. =back =head2 updated() Returns true if there are updates that need to be written. =head2 Seg_Del_Count(seg_name) Return the number of deletions for a given segment. =over =item * B - The name of the segment. =back =head1 INHERITANCE KinoSearch::Index::DeletionsWriter isa L isa L. =head1 COPYRIGHT AND LICENSE Copyright 2005-2010 Marvin Humphrey This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut