Lucy::Index::PolyReader - Multi-segment implementation of IndexReader.
my $polyreader = Lucy::Index::IndexReader->open( index => '/path/to/index', ); my $doc_reader = $polyreader->obtain("Lucy::Index::DocReader"); for my $doc_id ( 1 .. $polyreader->doc_max ) { my $doc = $doc_reader->fetch_doc($doc_id); print " $doc_id: $doc->{title}\n"; }
PolyReader conflates index data from multiple segments. For instance, if an index contains three segments with 10 documents each, PolyReader’s doc_max() method will return 30.
Some of PolyReader’s DataReader components may be less efficient or complete than the single-segment implementations accessed via SegReader.
my $int = $poly_reader->doc_max();
Return the maximum number of documents available to the reader, which is also the highest possible internal document id. Documents which have been marked as deleted but not yet purged from the index are included in this count.
my $int = $poly_reader->doc_count();
Return the number of documents available to the reader, subtracting any that are marked as deleted.
my $int = $poly_reader->del_count();
Return the number of documents which have been marked as deleted but not yet purged from the index.
my $i32_array = $poly_reader->offsets();
Return an array with one entry for each segment, corresponding to segment doc_id start offset.
my $arrayref = $poly_reader->seg_readers();
Return an array of all the SegReaders represented within the IndexReader.
Lucy::Index::PolyReader isa Lucy::Index::IndexReader isa Lucy::Index::DataReader isa Clownfish::Obj.
Copyright © 2010-2015 The Apache Software Foundation, Licensed under the
Apache License, Version 2.0.
Apache Lucy, Lucy, Apache, the Apache feather logo, and the Apache Lucy project logo are trademarks of The
Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their
respective owners.