-
-
29 Jun 2009 22:37:41 UTC
- Development release
- Distribution: KinoSearch
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (27 / 1 / 6)
- Kwalitee
Bus factor: 0- License: perl_5
- Activity
24 month- Tools
- Download (609.56KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors- Marvin Humphrey <marvin at rectangular dot com>
- Dependencies
- JSON::XS
- Lingua::Stem::Snowball
- Lingua::StopWords
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
KinoSearch::Index::SegReader - Single-segment IndexReader.
SYNOPSIS
my $polyreader = KinoSearch::Index::IndexReader->open( index => '/path/to/index', ); my $seg_readers = $polyreader->seg_readers; for my $seg_reader (@$seg_readers) { my $seg_name = $seg_reader->get_segment->get_name; my $num_docs = $seg_reader->doc_max; print "Segment $seg_name ($num_docs documents):\n"; my $doc_reader = $seg_reader->obtain("KinoSearch::Index::DocReader"); for my $doc_id ( 1 .. $num_docs ) { my $doc = $doc_reader->fetch($doc_id); print " $doc_id: $doc->{title}\n"; } }
DESCRIPTION
SegReader interprets the data within a single segment of an index.
Generally speaking, only advanced users writing subclasses which manipulate data at the segment level need to deal with the SegReader API directly.
Nearly all of SegReader's functionality is implemented by pluggable components spawned by Architecture's factory methods.
INHERITANCE
KinoSearch::Index::SegReader isa KinoSearch::Index::IndexReader isa KinoSearch::Index::DataReader isa KinoSearch::Obj.
COPYRIGHT
Copyright 2005-2009 Marvin Humphrey
LICENSE, DISCLAIMER, BUGS, etc.
See KinoSearch version 0.30.
Module Install Instructions
To install KSx::Simple, copy and paste the appropriate command in to your terminal.
cpanm KSx::Simple
perl -MCPAN -e shell install KSx::Simple
For more information on module installation, please visit the detailed CPAN module installation guide.