TheBigDB 介绍
TheBigDB 是一个非常松散的结构化数据库软件。其 API 是基于 HTTP 的 GET 和 POST 请求。
示例 JavaScript 代码:
var thebigdb = new TheBigDB;
thebigdb.Statement("search",
{
nodes: [{match: ""}, "job", "President of the United States"],
period: {from: "2000-01-01", to: "2002-01-01"}
},
function(data){ console.log(data) }
);
TheBigDB 官网
http://thebigdb.com/