私はmongoDBとpymongoに不慣れで、データベースをディスクから/にロードして保存する方法を学ぼうとしています。 .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?