您的位置:首页 > 数据库 > Mongodb

Mongodb 文档翻译

2015-07-22 09:55 232 查看
基于 Mongodb 手册 英文版 翻译.

此翻译的github地址

欢迎来到Mongodb 手册。 Mongodb 是易于开发和伸缩的开源,基于文档结构数据库。

MongoDB使用了BSON这种结构来存储数据和网络数据交换。把这种格式转化成一文档这个概念(Document),因为BSON是schema-free的,所以在MongoDB中所对应的文档也有这个特征,这里的一个Document也可以理解成关系数据库中的一条记录(Record),只是这里的Document的变化更丰富一些,如Document可以嵌套。

MongoDB以BSON做为其存储结构的一种重要原因是其可遍历性。

入门

MongoDB提供如下版本的入门指南:

mongo Shell

Introduction to MongoDB as well as instructions to Import Example Dataset;

介绍MongoDB和导入样例数据集

A brief overview of the MongoDB Shell (mongo);

Python

PyMongo is a Python distribution containing tools for working with MongoDB, and is the recommended way to work with MongoDB from Python.

Node.js

MongoDB Node.js Driver is the officially supported Node.js driver for MongoDB.

MongoDB Node.js 驱动为官方支持驱动。

Java

MongoDB Java 驱动 是官方支持的 MongoDB驱动。

驱动

C#

MongoDB C# Driver is the officially supported C# driver for MongoDB.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: