Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 737 Bytes

introduction.md

File metadata and controls

23 lines (15 loc) · 737 Bytes

Introduction to MongoDB

This document provides a brief introduction to MongoDB and some key concepts.

MongoDB 是什么

MongoDB是一个开源的文档数据库(document database)系统,它具有高性能、高可用性、容易扩展的特点。

文档数据库

  • 数据库中的一条记录(record)就是一个文档(document)
  • 文档是由键值对组成的一个数据结构,就像JSON那样

MongoDB 的特点