<<

NAME

Koha::SearchEngine::QueryBuilder - instantiates the query builder that corresponds to the SearchEngine system preference

DESCRIPTION

This allows you to be agnostic about what the search engine configuration is and just get whatever querybuilder you need.

SYNOPSIS

    use Koha::SearchEngine::QueryBuilder;
    my $qb = Koha::SearchEngine::QueryBuilder->new({index => $Koha::SearchEngine::BIBLIOS_INDEX});

METHODS

new

Creates a new QueryBuilder of whatever the relevant type is.

<<