您好,登錄后才能下訂單哦!
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 字段一共多少種 ?
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。