我可以在列表中获取mongodb集合的所有文档吗?

时间:2018-02-19 10:03:55

标签: python mongodb python-3.x pymongo

我正在使用mongodb进行数据存储。我正在使用pymongo从mongo服务器获取数据。我想从每个集合中获取所有文档到列表中。以下是mongodb指南针显示的数据库统计信息:

Stats by mongo compass

它是否包含列表中的所有文件?我的电脑有32 GB的RAM。

curs=db.collection.find()
list_to_be_fill_with_documents=[]
for doc in curs:
    list_to_be_fill_with_documents.append(doc)

0 个答案:

没有答案