Details
-
Bug
-
Resolution: Done
-
Major - P3
-
2.6
-
None
-
Xubuntu Quantal 64 bit
Python 3.2.3
MongoDB v2.4.6
Description
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(
)