NAME
KiokuDB::Backend::MongoDB - MongoDB backend for KiokuDB
SYNOPSIS
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
);
...
DESCRIPTION
This KiokuDB backend implements the Clear
, Scan
and the Query::Simple
roles.
AUTHOR
Ask Bjørn Hansen, <ask at develooper.com>
BUGS
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.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc KiokuDB::Backend::MongoDB
You can also look for information at:
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=KiokuDB-Backend-MongoDB
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
Yuval Kogman (KiokuDB::Backend::CouchDB) and Florian Ragwitz (MongoDB).
COPYRIGHT & LICENSE
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.
1 POD Error
The following errors were encountered while parsing the POD:
- Around line 192:
Non-ASCII character seen before =encoding in 'Bjørn'. Assuming UTF-8