Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
他の言語は使いたくない。MongoDBのシェルを開いて、_idを1つ増やした100000のドキュメントを作成します。
それは可能ですか?
MongoDBシェルはjavascriptシェルであるため、javascriptで使用できるものなら何でも使用できます。
> for (var i=0; i<100000; i++) { db.my_collection.insert({i: i}); }