vote up 2 vote down star

The Perl DBI module lets me connect to many different types of SQL database transparently. Is there an equivalent Perl module for non-relational key-value pair databases?

For example, an interface that might let me start developing with a BerkeleyDB (or even just a Perl hash?) but switch to something like memcachedb or CouchDB or even a cloud database like those offered by Amazon SinmpleDB or Google AppEngine Datastore.

(Is this what Tie::Hash does? In which case, where can I find a summary of implementations?)

flag

77% accept rate

4 Answers

vote up 3 vote down

tie is a generic mechanism "to hide an object class in a simple variable." Tie::Hash is a convenient utility class to implement hash ties.

Thus tying objects into a hash is a proper abstraction to access key-value pair databases. To the best of my knowledge there is no common infrastructure to create such ties, so you should create a Factory yourself to isolate your project from the various ways to create the different ties.

link|flag
vote up 2 vote down

Generally for every type of key-value pairs storage you will need separate module.

For example:

I'm not sure if there is module for Google AppEngine Datastore - generally, search on http://search.cpan.org/ for something that suits you.

link|flag
vote up 9 vote down

not sure if this is what you want: http://search.cpan.org/~nuffin/KiokuDB-0.27/lib/KiokuDB.pm

and it has CouchDB, BDB(BerkeleyDB) and DBI backend.

Thanks.

link|flag
vote up 2 vote down

CHI looks promising, from the maker of Cache::Cache.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.