Skip to content

Instantly share code, notes, and snippets.

@comerford
Last active October 16, 2022 18:45
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Insert 100k Minimal Docs into test DB - MongoDB
// simple for loop to insert 100k records into the test databases
var testDB = db.getSiblingDB("test");
// drop the collection, avoid dupes
testDB.timecheck.drop();
for(var i = 0; i < 100000; i++){
testDB.timecheck.insert(
{_id : i}
)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment