Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、次のようなコードがあります。
[{'id': i, 'title': somedict[i]['title'] % db.somecollection.find(somedict[i]['query']).count()} for i in somedict.keys()]
それは機能しますが、によって返されたカーソルを閉じないという事実は好きではありませんfind(...)。 このコードを変更して を呼び出しclose()、インラインのままにする方法はありますか?
find(...)
close()