Scroll to navigation

LucyX::Remote::ClusterSearcher(3pm) User Contributed Perl Documentation LucyX::Remote::ClusterSearcher(3pm)
 

NAME

LucyX::Remote::ClusterSearcher - Search multiple remote indexes.

SYNOPSIS

    my $searcher = eval {
        LucyX::Remote::ClusterSearcher->new(
            schema => MySchema->new,
            shards => [ 'search1:7890', 'search2:7890', 'search3:7890' ],
        );
    };
    ...
    my $hits = eval { $searcher->hits( query => $query ) };

DESCRIPTION

ClusterSearcher is a subclass of Lucy::Search::Searcher which can be used to search a composite index made up of multiple shards, where each shard is represented by a host:port pair running LucyX::Remote::SearchServer.

METHODS

new

Constructor. Takes hash-style params.
schema - A Schema, which must match the Schema used by each remote node.
shards - An array of host:port pairs running LucyX::Remote::SearchServer instances, which identifying the shards that make up the composite index.
2015-03-06 perl v5.20.2