The following short snippet:
for i, ad in enumerate(c.db.coll.find(fields=[])):
logging.info('%d' % i)
shows that after 101 iterations a freeze happens.
CPython shows freeze for about 1-2 seconds and PyPy 1.6 freezes for several minutes!
The following short snippet:
for i, ad in enumerate(c.db.coll.find(fields=[])):
logging.info('%d' % i)
shows that after 101 iterations a freeze happens.
CPython shows freeze for about 1-2 seconds and PyPy 1.6 freezes for several minutes!