I try to find python's module for performance testing of mongoDB. I want to load about 100.000 documents to database. And performing some standard operations under it, like create, drop, update and etc. So, I need module (like a framework for bot develop) or program what can run these tests for me. In my mind it will be like a simple bot with multithreading support.
1 Answer
I've used the timeit module for performance testing to great effect in the past.
You could also checkout: mongo-perf - blog article here
1 Comment
Ross
Denis: Added a link to mongo-perf as well for you to check out