Data::Fallback::Client - a client for Data::Fallback


NAME

Data::Fallback::Client - a client for Data::Fallback


DESCRIPTION

Data::Fallback::Client is a simple client to interact with an active Data::Fallback::Daemon.


EXAMPLE

#!/usr/bin/perl -w

use strict; use Data::Fallback::Client;

my $self = Data::Fallback::Client->new({

  # point to the Data::Fallback::Daemon that is running
  host           => 'localhost',
  port           => '20203',

});

my $value = $self->get(``/list_name/primary_key/column'');


A SIMPLE WARNING

I plan on eventually supporting XML, but I am not sure when. My protocol is not written in stone, so please be agile when updating to new versions.


THANKS

Thanks to Paul Seamons for Net::Server and for helping me set up this simple client.


AUTHOR

Copyright 2001-2002, Earl J. Cahill. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Address bug reports and comments to: cpan@spack.net.

When sending bug reports, please provide the version of Data::Fallback, the version of Perl, and the name and version of the operating system you are using.

 Data::Fallback::Client - a client for Data::Fallback