The Perl DBI module allows you to connect to many different types of SQL databases transparently. Is there an equivalent Perl module for paired databases without relational databases?
For example, an interface that can let me start working with BerkeleyDB (or even just a Perl hash?), But switch to something like memcachedb or CouchDB or even a cloud-based database such as those offered by Amazon SinmpleDB or Google AppEngine Datastore.
(Is this what Tie :: Hash does? In this case, where can I find a summary of the implementations?)
source
share