Is there any NoSQL database as simple as SQLite?

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.


UnQLite是一个进程内软件库,它实现了一个独立的,无服务器的,零配置的事务性NoSQL数据库引擎。


I think Berkeley DB is the classic choice here.

Berkeley DB (BDB) is a software library that provides a high-performance embedded database for key/value data. Berkeley DB is written in C with API bindings for C++, C#, PHP, Java, Perl, Python, Ruby, Tcl, Smalltalk, and many other programming languages. BDB stores arbitrary key/data pairs as byte arrays, and supports multiple data items for a single key. Berkeley DB is not a relational database.


您可能还想关注CouchDB和SQLite开发人员的UnQL。

链接地址: http://www.djcxy.com/p/19746.html

上一篇: Android上SQLite的最佳做法是什么?

下一篇: 有没有像SQLite那样简单的NoSQL数据库?