-
-
27 Aug 2010 01:10:56 UTC
- Development release
- Distribution: KinoSearch
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (49 / 4 / 1)
- Kwalitee
Bus factor: 0- License: perl_5
- Activity
24 month- Tools
- Download (890.91KB)
- 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
- Parse::RecDescent
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
KinoSearch::Search::PolySearcher - Aggregate results from multiple searchers.
SYNOPSIS
my $schema = MySchema->new; for my $server_name (@server_names) { push @searchers, KSx::Remote::SearchClient->new( peer_address => "$server_name:$port", password => $pass, schema => $schema, ); } my $poly_searcher = KinoSearch::Search::PolySearcher->new( schema => $schema, searchers => \@searchers, ); my $hits = $poly_searcher->hits( query => $query );
DESCRIPTION
The primary use for PolySearcher is to aggregate results from several remote searchers via KSx::Remote::SearchClient, diffusing the cost of searching a large corpus over multiple machines. It is also possible to aggregate results from multiple Searchers on a single machine.
CONSTRUCTORS
new( [labeled params] )
my $poly_searcher = KinoSearch::Search::PolySearcher->new( schema => $schema, searchers => \@searchers, );
schema - A Schema.
searchers - An array of Searchers.
INHERITANCE
KinoSearch::Search::PolySearcher isa KinoSearch::Search::Searcher isa KinoSearch::Object::Obj.
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.
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.