Bulk insert in Mongo takes time i.e average 15 seconds to insert 10000 documents in a collection.
My System is 8 core and 16 GB RAM.
How can I reduce response time for Mongo Insertion? What mongo configurations can be done to reduce execution time?
db.getCollection('temp').insert([{id:1},{id:10000}])
Each document contain 25-30 properties. I am using jenssegers library.