Performance gain by using bulk inserts vs regular inserts in MongoDB -


what performance gain using bulk inserts vs regular inserts in mongodb , pymongo specifically. bulk inserts wrapper regular inserts?

bulk inserts no wrappers regular inserts. bulk insert operation contains many documents sent whole. saves many database round trips. more performant since don't have send each document on network separately.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -