there are 200000 data in the data, and each data has a typical list of words of 5000 length [{aVl1}, {bju 2},.], and typical dictionaries of 5000 length {{aRom 1}, {bjr 2},.}, use pyMongo to find100 data, the traversal of cursor is particularly slow, is there any effective way to speed up?
cursor = col.find({"id": {"$in": nodes}})
for i in cursor:
do something
Thank you ~