NAME
CouchDB::Simple - A simple interface to CouchDB
VERSION
Version 0.0001
SYNOPSIS
This class implements the functionality needed to interact with CouchDB.
Example usage:
use CouchDB::Simple
my $couch = CouchDB::Simple->new(
host => 'localhost', # defaults to 'localhost'
port => 5984, # defaults to 5984
);
METHODS
create_document($id, \%document)
Add a new document with the given id.
AUTHORS
Khaled Hussein <khaled.hussein@gmail.com>
Naveed Massjouni <naveed.massjouni@rackspace.com>
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc CouchDB::Simple