Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
哪些数据库使用 SQLite 作为存储层?
注意:我了解到 CouchBase 在早期阶段使用 SQLite 作为存储层,但我没有找到代码 - 我不确定它是否正确,因为我在一些非官方文档上阅读过它。
我只想研究这些数据库(主要是 NoSQL 数据库)的代码库——如果有的话——并围绕这个概念进行游戏。
TouchDB 使用 SQLite 作为它的后端,它被认为是一个数据库。
http://touchdb.org/
换句话说,TouchDB 在高层存储 JSON 文档,因此它是一个面向文档的数据库。但是存储的实际细节由 SQLite 处理。
就像所有评论指出的那样,任何使用 SQLite 作为后端的数据库通常都不是您想要使用的数据库。=)