我在pymongo嘗試下面的命令:如何擺脫mongodb中的光標id錯誤?
records= db.collection_name.find({"gender":"female"}).batch_size(5)
但幾次迭代後得出:
pymongo.errors.CursorNotFound: Cursor not found, cursor id: 61593385827.
另外,如果我嘗試timeout=False
在同一個命令即
records= db.collection_name.find({"gender":"female"},timeout=False).batch_size(5)
其給出
TypeError: __init__() got an unexpected keyword argument 'timeout' error.