发布于 2014-09-26 00:21:22 | 171 次阅读 | 评论: 0 | 来源: 网友投递
RethinkDB 分布式数据库
RethinkDB是一个分布式数据库,最早是作为一个对SSD进行专门优化的MySQL存储引擎出现的,其特点在于对SSD的充分利用。而目前RethinkDB已经脱离MySQL成为一个独立的存储。
RethinkDB 1.15 发布(Lawrence of Arabia),此版本现已提供下载。
此版本包括超过 50 处功能增强,引入了地理查询。此版本包括许多用户请求的特性以外的新特性。此版本加快了磁盘反序列化数据查询的速度,添加了新的 r.uuid 命令,支持服务器端的 UUIDs 生成。
RethinkDB 丰富的地理特性如下:
r.geojson and r.to_geojson for importing and exporting GeoJSON
Geospatial queries:
get_intersecting: finds all documents that intersect with a given geometric object
get_nearest: finds the closest documents to a point
Geospatial indexes to make get_intersecting
and get_nearest
blindingly fast
Functions that operate on geometry:
r.distance: gets the distance between a point and another geometric object
r.intersects: determines whether two geometric objects intersect
r.includes: tests whether one geometric object is completely contained in another
r.fill: converts a line into a polygon
r.polygon_sub: subtracts one polygon from another
更多内容请看发行说明。
RethinkDB 设计用来存储 JSON 文档的分布式数据库,可通过简单操作实现多机分布式存储。支持表的联合和分组查询。
RethinkDB是一个分布式数据库,最早是作为一个对SSD进行专门优化的MySQL存储引擎出现的,其特点在于对SSD的充分利用。而目前RethinkDB已经脱离MySQL成为一个独立的存储。
特点:
简单编程模型
JSON 数据模型和一致性
分布式联合查询、子查询、聚合查询和原子更新操作
Hadoop 风格的 map/reduce.
轻松管理
提供友好的 Web 和命令行管理工具
服务器和网络故障时的谨慎处理
多数据中心复制和故障转移
水平伸缩
数据分片和复制到多个节点
自动化并行查询和分布式查询
通过 MVCC 并发实现无锁操作