-
Type: Bug
-
Resolution: Done
-
Priority: Major - P3
-
Affects Version/s: 2.6
-
Component/s: None
-
Environment:Xubuntu Quantal 64 bit
Python 3.2.3
MongoDB v2.4.6
When I insert a lot of records (a few millions) using pymongo python memory usage is constantly increasing.
Simple script can demonstrate it:
import pymongo
client = pymongo.MongoClient("localhost")
collection = client.test.test
while True:
collection.insert(
)