一个针对RethinkDB的轻量级 Node.js ORM 框架:Thinky
jopen
10年前
Thinky 是一个轻量级的 Node.js 的 ORM 框架,用于支持 RethinkDB 分布式数据库.
// Create a new post var post = new Post({ title: "Hello World!", content: "This is an example." }); // Create a new author var author = new Author({ name: "Michel" }); // Join the documents post.author = author; post.saveAll().then(function(result) { /* post = result = { id: "0e4a6f6f-cc0c-4aa5-951a-fcfc480dd05a", title: "Hello World!", content: "This is an example.", idAuthor: "3851d8b4-5358-43f2-ba23-f4d481358901", author: { id: "3851d8b4-5358-43f2-ba23-f4d481358901", name: "Michel" } } */ });
RethinkDB 设计用来存储 JSON 文档的分布式数据库,可通过简单操作实现多机分布式存储。支持表的联合和分组查询。
特点:
简单编程模型
- JSON 数据模型和一致性
- 分布式联合查询、子查询、聚合查询和原子更新操作
- Hadoop 风格的 map/reduce.
轻松管理
- 提供友好的 Web 和命令行管理工具
- 服务器和网络故障时的谨慎处理
- 多数据中心复制和故障转移
水平伸缩
- 数据分片和复制到多个节点
- 自动化并行查询和分布式查询
- 通过 MVCC 并发实现无锁操作
项目主页:http://www.open-open.com/lib/view/home/1398823083906