MongoDB查询结果内存使用情况

时间:2018-06-26 17:20:18

标签: mongodb pymongo

我想知道import _thread import time def test1(): while True: time.sleep(1) print('TEST1') def test2(): while True: time.sleep(3) print('TEST2') try: _thread.start_new_thread(test1,()) _thread.start_new_thread(test2,()) except: print("ERROR") 如何存储数据库查询的结果集?我知道在集合上执行MongoDB操作会返回指向结果集的find()。结果集是否与数据库的原始数据是一个单独的实体,即结果集是否是数据库中数据的副本,它将占用更多内存?如果对数据库的查询过大,是否有可能内存不足?

0 个答案:

没有答案