我爱编程

MongoDB 学习笔记

2016-06-18  本文已影响120人  steveysy

安装

MongoDB 下载地址:https://www.mongodb.com/download-center
最新版3.x不支持win7平台,目前支持的平台有:Linux, Mac, Windows Server 2008

使用

Python中主要用pymongo 这个包来对mongoDB进行操作
由于MongoDB目前只有web的GUI界面,建议使用MongoChef来进行可视化的admin操作。

pymongo 地址:http://api.mongodb.com/python/current/
MongoChef地址:http://3t.io/mongochef/download/platform/

其它官方建议的GUI化的admin工具:
https://docs.mongodb.com/ecosystem/tools/administration-interfaces/

基本概念

MongoDB存储数据的层级:
数据库 Database DB
数据表 Collection
每个collection有唯一的_id做标识
Key:Values

Pymongo

目前在学习官方的tutorial ing
http://api.mongodb.com/python/current/tutorial.html

上一篇 下一篇

猜你喜欢

热点阅读