MongoDB是一个开源文档型数据库,能够提供高性能、高可用性以及自动拓展。
文档数据库
MongoDB中的一条记录就是一个文档,是一个数据结构,由字段和值对组成。MongoDB文档与JSON对象类似。字段的值有可能包括其它文档、数组以及文档数组。
使用文档的优势在于:
原文链接:https://www.f2er.com/mongodb/238800.html-
-
支持流畅的多态。
高可用性
MongoDB’s replication facility,called replica set,provides:
自动的 故障恢复以及
A replica set is a group of MongoDB servers that maintain the same data set,providing redundancy and increasing data availability.
水平扩展能力
MongoDB提供了水平拓展能力作为它 核心 功能的一部分:
` 将数据分发到机器集群中。
多个存储引擎的支持
MongoDB支持 :doc:` 多个存储引擎 ` ,例如:
- MMAPv1 Storage Engine.
WiredTiger Storage Engine 以及
此外,MongoDB还提供了可插拔的存储引擎API,能够允许第三方开发MongoDB的存储引擎。