码迷,mamicode.com
首页 > 数据库 > 详细

MongoDB-pymongo.errors.CursorNotFound: Cursor

时间:2018-05-16 18:31:30      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:mongodb   pymongo   

python, python3.
先从数据库中取得所有数据 db[‘test‘].find({},{_id:0}),然后对结果进行for循环

demos = db[‘demo‘].find({},{"_id": 0})

for cursor in demos:

? ? ? ? ?do_something()

但是当do_something函数耗时过长,在cursor上长时间没有进行操作,引发cursor在mongodb服务端超时

解决方案

1、设置no_cursor_timeout = True,永不超时,游标连接不会主动关闭,需要手动关闭

demos = db[‘demo‘].find({},{"_id": 0},no_cursor_timeout = True)

for cursor in demos:

? ? ? ? do_something()

demo.close() # 关闭游标

2、设置batch_size返回文档数,默认应该是20个文档(记不清了233333),可以设置小一些

#每次只返回一个文档

demos = db[‘demo‘].find({},{"_id": 0}).batch_size(1)

for cursor in demos:

? ? ? ? do_something()

注意:这种方法仍然会出现可能超过10分钟任然没有返回,比如你在do_something里进行一些十分耗时的操作,具体采用哪种方法按实际情况而定.


补充知识点:

mongodb条件操作符,"$lt", "$lte", "$gt", "$gte", "$ne"就是全部的比较操作符,
对应于 "<", "<=", ">", ">=", "!="。
原子操作符:"$and“, "$or“, "$nor“。

【2】:
db.runCommand(
{
distinct:"sofang_xinfang",key:"city"
}
) ---distinct 找出 city 字段一共多少种 ?

MongoDB-pymongo.errors.CursorNotFound: Cursor

标签:mongodb   pymongo   

原文地址:http://blog.51cto.com/13000661/2117066

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!