Is there any NoSql database as simple as SQLite? I'm looking for a lightweight database to persist a small set of data for a simple desktop application. I still can use SQLite but prefer a more OO approach since my app doesn't handle much data.
closed as not constructive by ChrisF♦ yesterday
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Do you need something embedded in your application (if yes, which language are you using?) or a separate database server? |
|||||||||||||
|
|
I think BDB is the classic choice here. |
|||||
|
|
Tokyo Cabinet and it's successor Kyoto Cabinet are best: http://fallabs.com/ |
||||
|
|
|
You might also want to keep an eye on UnQL from the developers of CouchDB and SQLite. |
|||||
|
|
Sounds like a job for y_serial ;-) Here's the description: "Serialization + persistance :: in a few lines of code, compress and annotate Python objects into SQLite; then later retrieve them chronologically by keywords without any SQL. Most useful "standard" module for a database to store schema-less data." See http://yserial.sourceforge.net/ for more details. |
|||
|
|
|
UnQLite is a in-process software library which implements a self-contained, serverless, zero-configuration, transactional NoSQL database engine. |
|||
|
|
|
RavenDB is an interesting option here (fair disclosure - I've only played with it a bit - have not used it in a real project yet). The feature I find most interesting is that it automatically maps your object model to the persistent store. In the RDMS world, the only tool that does this well (as far as I know) is Fluent NHibernate. Automapping can be a huge time saver during development, especially if you have a complicated object model, or rapidly changing requirements. |
|||||
|
|
I found UnQLite a couple of days ago, but it doesn't seem to support indexes and has no adapters. |
|||||
|
|
You can check some oodb (object-oriented database) Gemstone is nice. http://www.gemstone.com/ http://www.versant.com/ |
|||
|
|
|
Friendly https://github.com/jamesgolick/friendly is sort of a NOSQL database that uses Ruby + SQLite as its backend. It's kind of a hack, but it's also kind of nice. I wrote a sample Sinatra app that demonstrates it here: http://gist.github.com/507749#file_friendly%20sqlite%20nosql%20sinatra |
||||
|
|