[pymongo] pymongo.errors.CursorNotFound Exception

由於find之後,loop執行時間過長導致timeout, cusor失效

解決方式有以下幾種:

1. 使用batch_size()

    cursor = collection.find({}).batch_size(30)

2. 將取出的cursor轉為list

    result = list(collection.find({}))

3. 取消timeout限制,要在cursor使用之後close

    cursor = collection.find({}, no_cursor_timeout=True)

    cursor.close() 

上一篇:【thinkphp5操作redis系列教程】哈希类型之hVals


下一篇:thinkphp5 同时使用hasWhere和where导致的关联主键字段名冲突的问题