NAME
DDC::Client::Distributed - DDC Query utilities: client for distributed server
SYNOPSIS
##========================================================================
## PRELIMINARIES
use DDC::Client;
use DDC::Client::Distributed;
##========================================================================
## Constructors etc
$dc = $CLASS_OR_OBJ->new(%args);
##========================================================================
## Querying
$buf = $dc->queryRaw($query_string);
$hits = $dc->query($query_string);
## ... or any DDC::Client method ...
DESCRIPTION
Globals
Constructors etc
- new
-
$dc = $CLASS_OR_OBJ->new(%args);
Querying
- query
-
$buf = $dc->queryRaw($query_string);
Send a query string to the selected server and returns the raw result buffer.
- query
-
$hits = $dc->query($query_string);
Send a query string to the selected server and parses the result into a list of hits.
AUTHOR
Bryan Jurish <moocow@cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2006 by Bryan Jurish
This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.