検索

ホームページ  >  に質問  >  本文

pymongo遍历文档

cuments = collection.find_all()for document in documents:

   # 解析document的函数

数据量300万
到后面越来越慢
请问如何批量取数据

手机码字,敬请见谅


高洛峰高洛峰2951日前668

全員に返信(1)返信します

  • 三叔

    三叔2016-11-05 13:14:02

    不太确定文件是什么样子的,给出一个普通的解法

    with open(filename,'r') as documents:
        for document in documents:
            print document


    返事
    0
  • キャンセル返事