我是 mongoDB 和 pymongo 的新手,试图学习如何从磁盘加载和保存数据库,以便我可以随身携带它,将它发送给人们等。我已经阅读了http://api.mongodb上的教程.org/python/current/tutorial.html但找不到有关保存和加载数据库的有用信息。
假设我们创建一个数据库,如:
import pymongo
mongo = pymongo.Connection()
db = mongo['my_db']
col = db['my_col']
col.insert({'name': 'Adam','occupation': 'student'})
col.insert({'name': 'John','occupation': 'officer'})
#how can we save the database to disk after this point
#and later read it from another program?