Tokyo cabinet and SQLite compatible interfaces?

I was wondering if anyone had seen a library abstracting SQLite and Tokyo-Cabinet with the same API. Basically I am looking for something that will allow me to test and dev with SQLite, and then go to TC for production.

In any case, the language I use is Lua, but I am sure that such a library does not exist for Lua, so a library that does this in any other language is also good , since I can develop something similar for Lua based of this.

+4
source share
2 answers

DataMapper, the default ORM for Merb (written in Ruby), can help. Take a look at the experimental DataMapper adapter for Tokyo-Cabinet . DataMapper has already received SQLite3 support, so you can compare them.

+4
source

I don’t know for sure, but since Carbonado supports RDBMS (Oracle) and stored b-trees (BDB), it can definitely support both.

+1
source

All Articles