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 的 shell 并创建 100 000 个文档,其中 _id 递增 1。
那可能吗?
MongoDB shell 是一个 javascript shell,所以你可以使用任何你可以在 javascript 中使用的东西:
> for (var i=0; i<100000; i++) { db.my_collection.insert({i: i}); }