NAME

Daemonise::Plugin::CouchDB - Daemonise CouchDB plugin

VERSION

version 2.13

SYNOPSIS

use Daemonise;

my $d = Daemonise->new();
$d->debug(1);
$d->foreground(1) if $d->debug;
$d->config_file('/path/to/some.conf');

$d->load_plugin('CouchDB');

$d->configure;

# simple document GET (see Store::CouchBB for more)
my $doc = $d->couchdb->get_doc({id => "some_couchdb_id"});

ATTRIBUTES

couch_host

couch_port

couch_db

couch_user

couch_pass

couch_debug

SUBROUTINES/METHODS provided

configure

AUTHOR

Lenz Gschwendtner <norbu09@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Lenz Gschwendtner.

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