MongoDB 学习笔记

安装

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

    原文作者:steveysy
    原文地址: https://www.jianshu.com/p/f7b942e520fe
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞