目前我正在尝试为我的java应用程序找到一个可嵌入的nosql数据库。我目前的方法是使用couchbase lite java。我运行了以下示例,并看到了db.sqlite3文件的创建。
public class Main {
public static void main(String[] args) {
// Enable logging
Logger log = Logger.getLogger("app1");
log.setLevel(Level.ALL);
JavaContext context = new JavaContext();
// Create a manager
Manager manager = null;
try {
manager = new Manager(context, Manager.DEFAULT_OPTIONS);
} catch (IOException e) {
e.printStackTrace();
}
// Create or open the database named app
Database database = null;
try {
database = manager.getDatabase("app1");
} catch (CouchbaseLiteException e) {
e.printStackTrace();
}
// The properties that will be saved on the document
Map<String, Object> properties = new HashMap<String, Object>();
properties.put("title", "Couchbase Mobile");
properties.put("sdk", "Java");
// Create a new document
Document document = database.createDocument();
// Save the document to the database
try {
document.putProperties(properties);
} catch (CouchbaseLiteException e) {
e.printStackTrace();
}
// Log the document ID (generated by the database)
// and properties
log.info(String.format("Document ID :: %s", document.getId()));
log.info(String.format("Learning %s with %s", (String) document.getProperty("title"), (String) document.getProperty("sdk")));
System.out.println(document.toString());
}
}
所以我在这里使用的是nosql数据库吗?
答案 0 :(得分:3)
绝对。评论大多已经回答了这个问题。
Couchbase Lite不需要架构。它将数据存储为JSON文档(如代码示例中所示)。它目前使用map / reduce进行索引和查询。它是一个功能齐全的嵌入式NoSQL数据库(以及更多)。
从编码的角度来看,它如何在下面实现是无关紧要的。除了公共API之外,您不需要知道,也不应该依赖任何东西。
为了说明问题,有一个使用ForestDB的Couchbase Lite实现。 ForestDB目前被认为不如SQLite成熟,因此它不是默认值。
如果您对一个版本如何使用SQLite的实现细节感兴趣,我建议您查看代码。您可以在https://github.com/couchbase
的各种回购下找到它