Skip to content

Instantly share code, notes, and snippets.

@comerford
Last active October 16, 2022 18:45
Show Gist options
  • Save comerford/9834062 to your computer and use it in GitHub Desktop.
Save comerford/9834062 to your computer and use it in GitHub Desktop.
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