由於find之後,loop執行時間過長導致timeout, cusor失效oop
解決方式有如下幾種:io
1. 使用batch_size()exception
cursor = collection.find({}).batch_size(30)im
2. 將取出的cursor轉為listloop
result = list(collection.find({}))co
3. 取消timeout限制,要在cursor使用之後closetime
cursor = collection.find({}, no_cursor_timeout=True)bat
cursor.close()
# 最後一種方式,在使用時依然出現exception, 不清楚緣由,有知道的朋友也請不吝賜教。