SRU::Request::SearchRetrieve - A class for representing SRU searchRetrieve requests


SRU documentation  | view source Contained in the SRU distribution.

Index


NAME

Top

SRU::Request::SearchRetrieve - A class for representing SRU searchRetrieve requests

SYNOPSIS

Top

    ## creating a new request
    my $request = SRU::Request::SearchRetrieve->new(
        version => '1.1',
        query   => 'kirk and spock' );

DESCRIPTION

Top

METHODS

Top

new()

The constructor which you can pass the following parameters: version, query, startRecord, maximumRecords, recordPacking, recordSchema, recordXPath, resultSetTTL, sortKeys, stylesheet, extraRequestData. The version and query parameters are mandatory.

version()

query()

startRecord()

maximumRecords()

recordPacking()

recordSchema()

recordXPath()

resultSetTTL()

sortKeys()

stylesheet()

extraRequestData()

validParams()

cql()

Fetch the root node of the CQL parse tree for the query.


SRU documentation  | view source Contained in the SRU distribution.