
KiokuDB::Backend::MongoDB - MongoDB backend for KiokuDB

use KiokuDB::Backend::MongoDB;
my $conn = MongoDB::Connection->new(host => 'localhost');
my $mongodb = $conn->get_database('somedb');
my $collection = $mongodb->get_collection('kiokutest');
my $mongo = KiokuDB::Backend::MongoDB->new('collection' => $collection);
my $d = KiokuDB->new(
backend => $mongo
);
my $s = $d->new_scope;
my $uuid = $d->store($some_object);
...

This KiokuDB backend implements the Clear, Scan and the Query::Simple roles.

Ask Bjørn Hansen, <ask at develooper.com>

Please report any bugs or feature requests to bug-kiokudb-backend-mongodb at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=KiokuDB-Backend-MongoDB. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc KiokuDB::Backend::MongoDB
You can also look for information at:
http://rt.cpan.org/NoAuth/Bugs.html?Dist=KiokuDB-Backend-MongoDB

Yuval Kogman (KiokuDB::Backend::CouchDB) and Florian Ragwitz (MongoDB).

Copyright 2009-2010 Ask Bjørn Hansen, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.