Last active
October 16, 2022 18:45
-
-
Save comerford/9834062 to your computer and use it in GitHub Desktop.
Insert 100k Minimal Docs into test DB - MongoDB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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